Files
2025-10-18 01:46:46 +03:00

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;