@material-ui/unstyled
Version:
Unstyled React components with which to implement custom design systems.
11 lines (10 loc) • 492 B
TypeScript
export interface FormControlUnstyledClasses {
/** Class applied to the root element. */
root: string;
/** Class applied to the root element if `disabled={true}`. */
disabled: string;
}
export declare type FormControlUnstyledClassKey = keyof FormControlUnstyledClasses;
export declare function getFormControlUnstyledUtilityClasses(slot: string): string;
declare const formControlUnstyledClasses: FormControlUnstyledClasses;
export default formControlUnstyledClasses;