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 56fc9a0 commit 6eb10b3Copy full SHA for 6eb10b3
packages/fast-components-react-msft/src/text-action/text-action.props.ts
@@ -66,6 +66,11 @@ export interface TextActionHandledProps
66
* Overall disabled attribute that controls both the input and button disabled states
67
*/
68
disabled?: boolean;
69
+
70
+ /**
71
+ * The class name applied to the root element
72
+ */
73
+ className?: string;
74
}
75
76
export type TextActionProps = TextActionHandledProps & TextActionUnhandledProps;
packages/fast-components-react-msft/src/text-action/text-action.tsx
@@ -38,6 +38,7 @@ class TextAction extends Foundation<
38
beforeGlyph: void 0,
39
button: void 0,
40
buttonPosition: void 0,
41
+ className: void 0,
42
managedClasses: void 0,
43
};
44
0 commit comments