Skip to content

Commit

Permalink
Fix external link
Browse files Browse the repository at this point in the history
  • Loading branch information
vhande committed Nov 21, 2024
1 parent 4a7cd94 commit a5063e1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ui/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const BaseLink = forwardRef<HTMLElement, BaseLinkProps>(
display="inline-flex"
color={{ default: 'inherit', hover: 'inherit' }}
alignItems="center"
{...props}
{...getInlineProps(props)}
>
{children}
Expand All @@ -59,6 +60,7 @@ const BaseLink = forwardRef<HTMLElement, BaseLinkProps>(
as={as}
display="inline-flex"
alignItems="center"
{...props}
{...getInlineProps(props)}
>
<Button forwardedAs="span" variant={variant}>
Expand All @@ -84,6 +86,7 @@ const BaseLink = forwardRef<HTMLElement, BaseLinkProps>(
text-decoration: underline;
}
`}
{...props}
{...getInlineProps(props)}
>
{children}
Expand Down

0 comments on commit a5063e1

Please sign in to comment.