Alpha
The alpha preset restricts input to alphabetic characters only. It is useful for fields like names or other text-only inputs.
Raw Value
Display Value
import { useViraMask } from '@virastack/input-mask';
import { useForm } from 'react-hook-form';
const form = useForm({ defaultValues: { name: '' } });
const { name } = useViraMask({
form,
schema: { name: 'alpha' },
});
<input {...name} />