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
feat!: Refactor External Hyperlink to use new styling utilities (#3101)
Fixes: #2955
[category:Components]
Release Note:
We've updated `ExternalHyperlink` to use our new styling utilities and tokens.
### BREAKING CHANGES
`iconLabel` is now a *required* prop. We've removed the default `aria-label` of `Opens link in new window` to better support internationalization. You must provide a value to `iconLabel`.
Co-authored-by: manuel.carrera <[email protected]>
`iconLabel` is now a *required* prop. We've removed the default `aria-label` of `Opens link in new window` to better support internationalization. You must provide a value to `iconLabel`.
116
+
117
+
```tsx
118
+
//v12
119
+
<ExternalHyperlinkhref="https://workday.com">
120
+
External Hyperlink
121
+
</ExternalHyperlink>
122
+
123
+
//v13
124
+
<ExternalHyperlinkhref="https://workday.com"iconLabel='Open link in new window'>
0 commit comments