diff --git a/src/components/Link/Link.tsx b/src/components/Link/Link.tsx index 922411f79..f02b73870 100644 --- a/src/components/Link/Link.tsx +++ b/src/components/Link/Link.tsx @@ -72,6 +72,7 @@ const LinkBlock = (props: WithChildren) => { ); case 'normal': { const linkProps = getLinkProps(url, hostname, target); + const content = children || text; return ( ) => { onClick={onClick} {...linkProps} > - {children || text} - {arrow && ( + {arrow ? ( + {content} {WORD_JOINER_SYM} ) => { size={getArrowSize(textSize)} /> + ) : ( + content )} );