| 32 | }; |
| 33 | |
| 34 | export 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 | |
| 52 | export const InputNumberBase = ({ |
| 53 | ref, |
nothing calls this directly
no outgoing calls
no test coverage detected