Type Alias: SwitchProps

SwitchProps = Omit<InputHTMLAttributes<HTMLInputElement>, "color" | "size" | "type"> & Partial<{ color: SwitchColor; label: ReactNode; labelPlacement: SwitchLabelPlacement; onCheckedChange: SwitchChangeHandler; size: SwitchSize; }>

Props accepted by the Switch component.