Skip to content

Commit

Permalink
Fix(web-react): Fix underlined prop default value name in Link
Browse files Browse the repository at this point in the history
  • Loading branch information
crishpeen committed Sep 17, 2024
1 parent e5c8a7b commit 78bad4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-react/src/components/Link/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useLinkStyleProps } from './useLinkStyleProps';
const defaultProps: Partial<SpiritLinkProps> = {
elementType: 'a',
color: 'primary',
underline: 'hover',
underlined: 'hover',
};

/* We need an exception for components exported with forwardRef */
Expand Down

0 comments on commit 78bad4f

Please sign in to comment.