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

Interface InputProps

components/base/input/input.tsx:228–251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226TextField.displayName = "TextField";
227
228export 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
253export const Input = ({
254 size = "md",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected