UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

12 lines 367 B
export interface SwitchBaseClasses { root: string; checked: string; disabled: string; input: string; edgeStart: string; edgeEnd: string; } export type SwitchBaseClassKey = keyof SwitchBaseClasses; export declare function getSwitchBaseUtilityClass(slot: string): string; declare const switchBaseClasses: SwitchBaseClasses; export default switchBaseClasses;