MCPcopy Create free account
hub / github.com/untitleduico/react / InputProps

Interface InputProps

components/base/input/input-date.tsx:190–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188};
189
190interface 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
207export const InputDate = ({
208 size = "md",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected