Home > @uniformdev/design-system > SwitchProps
SwitchProps type
Signature:
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
label: ReactNode;
infoText?: string;
toggleText?: string;
children?: ReactNode;
switchSize?: 'base' | 'sm';
};