| 226 | TextField.displayName = "TextField"; |
| 227 | |
| 228 | export interface InputProps |
| 229 | extends |
| 230 | AriaTextFieldProps, |
| 231 | Pick< |
| 232 | InputBaseProps, |
| 233 | | "ref" |
| 234 | | "placeholder" |
| 235 | | "icon" |
| 236 | | "shortcut" |
| 237 | | "tooltip" |
| 238 | | "groupRef" |
| 239 | | "size" |
| 240 | | "wrapperClassName" |
| 241 | | "inputClassName" |
| 242 | | "iconClassName" |
| 243 | | "tooltipClassName" |
| 244 | > { |
| 245 | /** Label text for the input */ |
| 246 | label?: string; |
| 247 | /** Helper text displayed below the input */ |
| 248 | hint?: ReactNode; |
| 249 | /** Whether to hide required indicator from label */ |
| 250 | hideRequiredIndicator?: boolean; |
| 251 | } |
| 252 | |
| 253 | export const Input = ({ |
| 254 | size = "md", |
nothing calls this directly
no outgoing calls
no test coverage detected