| 188 | }; |
| 189 | |
| 190 | interface InputProps |
| 191 | extends |
| 192 | AriaDateFieldProps<DateValue>, |
| 193 | Pick< |
| 194 | InputDateBaseProps, |
| 195 | "ref" | "size" | "placeholder" | "icon" | "shortcut" | "tooltip" | "groupRef" | "iconClassName" | "wrapperClassName" | "tooltipClassName" |
| 196 | > { |
| 197 | /** Label text for the input */ |
| 198 | label?: string; |
| 199 | /** Helper text displayed below the input */ |
| 200 | hint?: ReactNode; |
| 201 | /** Whether to hide required indicator from label */ |
| 202 | hideRequiredIndicator?: boolean; |
| 203 | /** Class name for the input. */ |
| 204 | inputClassName?: string; |
| 205 | } |
| 206 | |
| 207 | export const InputDate = ({ |
| 208 | size = "md", |
nothing calls this directly
no outgoing calls
no test coverage detected