UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

14 lines (13 loc) 478 B
import { NumberInputRootProps } from './primitives'; interface NumberInputElProps extends NumberInputRootProps { /** * Whether to show a scrubber for fine-tuning the value. */ scrubber?: boolean; } /** * An input for displaying a numeric value. * @definition [Cerberus Docs](https://cerberus.digitalu.design/docs/components/number-input) */ export declare function NumberInput(props: NumberInputElProps): import("react/jsx-runtime").JSX.Element; export {};