Numeric
The numeric preset restricts input to numeric characters only. It is suitable for fields like counts, quantities, or other integer values.
Raw Value
Display Value
import { useViraMask } from '@virastack/input-mask';
import { useForm } from 'react-hook-form';
const form = useForm({ defaultValues: { count: '' } });
const { count } = useViraMask({
form,
schema: { count: 'numeric' },
});
<input {...count} />