import { NumberInput } from '@mantine/core' interface FnNumberInputProps { value?: number | string onChange?: (value: number | string) => void min?: number max?: number step?: number label?: string description?: string error?: string placeholder?: string prefix?: string suffix?: string } function FnNumberInput({ value, onChange, min, max, step, label, description, error, placeholder, prefix, suffix, }: FnNumberInputProps) { return ( ) } export { FnNumberInput } export type { FnNumberInputProps }