| 98 | ); |
| 99 | |
| 100 | export interface SwitchVariants { |
| 101 | /** The size of the switch. */ |
| 102 | size?: 'medium' | 'small'; |
| 103 | } |
| 104 | |
| 105 | export interface SwitchProps |
| 106 | extends Omit<InputHTMLAttributes<HTMLInputElement>, 'name' | 'type' | 'size'>, |
nothing calls this directly
no outgoing calls
no test coverage detected