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.
inputSizeSmall
1 parent 6be530f commit a077236Copy full SHA for a077236
1 file changed
packages/x-date-pickers/src/PickersTextField/PickersInputBase/pickersInputBaseClasses.ts
@@ -12,6 +12,8 @@ export interface PickersInputBaseClasses {
12
readOnly: string;
13
/** State class applied to the root element if `error=true`. */
14
error: string;
15
+ /** State class applied to the root element if `size=small`. */
16
+ inputSizeSmall: string;
17
/** Styles applied to the NotchedOutline element. */
18
notchedOutline: string;
19
/** Styles applied to the real hidden input element. */
@@ -52,6 +54,7 @@ export const pickersInputBaseClasses = generateUtilityClasses<PickersInputBaseCl
52
54
'adornedStart',
53
55
'adornedEnd',
56
'input',
57
+ 'inputSizeSmall',
58
'activeBar',
59
],
60
);
0 commit comments