You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added two new props `isExternal` and `externalLabel` to the Anchor component props to describe to visually impaired users that the link leads to an external page or opens in a new tab.
* The ref to the HTML DOM element, it can be a button an anchor or a span, typed as any for now because of complex js manipulation with styled components
44
45
*/
45
46
ref?: Ref<any>;
47
+
/**
48
+
* Whether the link leads to an external page or opens in a new tab.
49
+
*/
50
+
isExternal?: boolean;
51
+
/**
52
+
* Short label to describe that the link leads to an external page or opens in a new tab.
0 commit comments