UNPKG

@hhgtech/hhg-components

Version:
9 lines (8 loc) 411 B
import React from 'react'; import { NumberInputProps as MantineNumberInputProps } from '@mantine/core'; export type NumberInputProps = Omit<MantineNumberInputProps, 'onChange' | 'value'> & { value?: number | ''; onChange?(value?: number | ''): void; }; declare const NumberInput: ({ value: _value, onChange: _onChange, ...props }: NumberInputProps) => React.JSX.Element; export { NumberInput };