Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24536,7 +24536,6 @@ Links are rendered as \`<a>\` tags.
The anchor also has the attributes \`target="_blank"\` and \`rel="noopener"\`.
Additionally, the \`activeHref\` property won't be modified when a user chooses the link.
- \`externalIconAriaLabel\` (string) - Adds an aria-label to the external icon.
Note: Deprecated, use i18nStrings.externalIconAriaLabel instead.
- \`info\` (ReactNode) - Enables you to display content next to the link. Although it is technically possible to insert any content,
our UX guidelines allow only to add a Badge and/or a "New" label.

Expand Down
4 changes: 0 additions & 4 deletions src/side-navigation/interfaces.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export interface SideNavigationProps extends BaseComponentProps {
* The anchor also has the attributes `target="_blank"` and `rel="noopener"`.
* Additionally, the `activeHref` property won't be modified when a user chooses the link.
* - `externalIconAriaLabel` (string) - Adds an aria-label to the external icon.
* Note: Deprecated, use i18nStrings.externalIconAriaLabel instead.
* - `info` (ReactNode) - Enables you to display content next to the link. Although it is technically possible to insert any content,
* our UX guidelines allow only to add a Badge and/or a "New" label.
*
Expand Down Expand Up @@ -147,9 +146,6 @@ export namespace SideNavigationProps {
text: string;
href: string;
external?: boolean;
/**
* @deprecated Use i18nStrings.externalIconAriaLabel instead.
*/
externalIconAriaLabel?: string;
info?: React.ReactNode;
}
Expand Down
Loading