We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d94d9 commit 70e2ba4Copy full SHA for 70e2ba4
lib/components/link/external-link.tsx
@@ -8,7 +8,7 @@ export type ExternalLinkProps = Omit<LinkProps, 'isExternal' | 'children'> & { l
8
9
export const ExternalLink = ({ label, ...rest }: ExternalLinkProps) => {
10
return (
11
- <Link isExternal {...rest} display="flex" alignItems="center">
+ <Link isExternal display="flex" alignItems="center" {...rest}>
12
{label}
13
<Icon display="inline" verticalAlign="middle" marginInlineStart={2} as={PiArrowSquareOutBold} />
14
</Link>
0 commit comments