fix; reduce font size for link arrow

This commit is contained in:
Ivana Andersson 2023-09-07 11:01:19 +03:00
parent 473b79b39b
commit 9f12bb7ebc
1 changed files with 4 additions and 1 deletions

View File

@ -37,7 +37,10 @@ const LinkWithArrow = ({
onClick={navigateHandler}
>
{arrowLeft && <ArrowLeftIcon size={20} color="#2A4CF4" />}
<Link style={{ color: textColor || '#2A4CF4', marginBottom: '2px' }} to={to}>
<Link
style={{ color: textColor || '#2A4CF4', marginBottom: '2px', fontSize: '13px' }}
to={to}
>
{text}
</Link>
{arrowRight && <ArrowRightIcon size={20} color="#2A4CF4" />}