| 76 | }); |
| 77 | |
| 78 | export interface InputVariants { |
| 79 | disabled?: boolean; |
| 80 | endAdornment?: boolean; |
| 81 | /** If true, the input will display an error state. */ |
| 82 | error?: boolean; |
| 83 | /** The size of the input. */ |
| 84 | size?: 'medium' | 'large'; |
| 85 | startAdornment?: boolean; |
| 86 | } |
| 87 | |
| 88 | export interface InputProps |
| 89 | extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'>, |
nothing calls this directly
no outgoing calls
no test coverage detected