| 41 | }); |
| 42 | |
| 43 | export interface CheckboxVariants { |
| 44 | /** The size of the checkbox. */ |
| 45 | size?: 'small' | 'medium'; |
| 46 | } |
| 47 | |
| 48 | export interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'size'>, CheckboxVariants { |
| 49 | /** The label of the checkbox, displayed on the right. */ |
nothing calls this directly
no outgoing calls
no test coverage detected