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 b07e154 commit 7305e0dCopy full SHA for 7305e0d
src/components/icon/icon.tsx
@@ -37,6 +37,7 @@ const IconBasicComponent = (
37
disabled={disabled}
38
id={props.id}
39
tabIndex={tabIndex}
40
+ title={props.title || ''}
41
type={ButtonType.BUTTON}
42
onClick={onClick}
43
>
src/components/icon/types/icon.ts
@@ -40,6 +40,7 @@ export interface IIconStandAlone extends IconAriaAttributes {
twistAnimationTransformValue?: string | null | undefined;
complex?: boolean;
customIconStyles?: IconTypes;
+ title?: string;
44
}
45
46
export type IIcon = Omit<IIconStandAlone, 'onKeyDown'> & {
0 commit comments