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 a6bfd68 commit fbbd3a5Copy full SHA for fbbd3a5
src/components/link/stories/link.stories.tsx
@@ -40,6 +40,7 @@ const args = {
40
},
41
iconPosition: LinkPositionType.RIGHT,
42
draggable: false,
43
+ ['aria-current']: true,
44
themeArgs: themesObject[themeSelected][STYLES_NAME.LINK],
45
};
46
src/components/link/types/link.ts
@@ -23,7 +23,7 @@ import { LinkTargetType } from './target';
23
24
type LinkAriaAttributes = Pick<
25
React.AriaAttributes,
26
- 'aria-label' | 'aria-describedby' | 'aria-disabled'
+ 'aria-label' | 'aria-describedby' | 'aria-disabled' | 'aria-current'
27
>;
28
export interface ILinkStandAlone extends LinkAriaAttributes {
29
action?: LinkActionType;
0 commit comments