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 1dff4da commit 49e0cc8Copy full SHA for 49e0cc8
src/components/button/buttonStandAlone.tsx
@@ -72,6 +72,7 @@ const ButtonStandAloneComponent = (
72
minWidth={props.minWidth}
73
role={props.role}
74
tabIndex={props.tabIndex}
75
+ title={props.title}
76
type={props.type}
77
onClick={props.onClick}
78
>
src/components/button/types/button.ts
@@ -62,6 +62,7 @@ export interface IButtonStandAlone
62
icon?: IElementOrIcon;
63
form?: string;
64
role?: string | ROLES;
65
+ title?: string;
66
}
67
68
/**
0 commit comments