10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import { NumberInput, NumberInputProps } from '@mantine/core';
|
|
|
|
type Props = NumberInputProps;
|
|
|
|
const NumberField = (props: Props) => {
|
|
return <NumberInput hideControls {...props} />;
|
|
};
|
|
|
|
export default NumberField;
|