fix; reduce font size for link arrow
This commit is contained in:
parent
473b79b39b
commit
9f12bb7ebc
|
@ -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" />}
|
||||
|
|
Loading…
Reference in New Issue