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

Interface InputNumberBaseProps

components/base/input/input-number.tsx:34–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32};
33
34export interface InputNumberBaseProps extends AriaNumberFieldProps {
35 /**
36 * Input size.
37 * @default "sm"
38 */
39 size?: "sm" | "md" | "lg";
40 /** Placeholder text. */
41 placeholder?: string;
42 /** Class name for the input. */
43 inputClassName?: string;
44 /** Class name for the input wrapper. */
45 wrapperClassName?: string;
46 ref?: Ref<HTMLInputElement>;
47 groupRef?: Ref<HTMLDivElement>;
48 /** Orientation of buttons. */
49 orientation?: "horizontal" | "vertical";
50}
51
52export const InputNumberBase = ({
53 ref,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected