/** * The class name contract for the toggle component */ export interface ToggleClassNameContract { /** * The root of the toggle component */ toggle?: string; /** * The toggle label */ toggle_label?: string; /** * The toggle button */ toggle_toggleButton?: string; /** * The toggle input element */ toggle_input?: string; /** * The toggle state indicator */ toggle_stateIndicator?: string; /** * The label indicating state */ toggle_statusMessage?: string; /** * Applied when the toggle is disabled */ toggle__disabled?: string; /** * Applied when the toggle is checked */ toggle__checked?: string; }