@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 411 B
TypeScript
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 };