Files
ETB/ETB-FrontEnd/node_modules/@mui/material/FormControl/formControlClasses.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

15 lines
608 B
TypeScript

export interface FormControlClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `margin="normal"`. */
marginNormal: string;
/** Styles applied to the root element if `margin="dense"`. */
marginDense: string;
/** Styles applied to the root element if `fullWidth={true}`. */
fullWidth: string;
}
export type FormControlClassKey = keyof FormControlClasses;
export declare function getFormControlUtilityClasses(slot: string): string;
declare const formControlClasses: FormControlClasses;
export default formControlClasses;