Text
The text preset allows any text input without specific formatting. It acts as a standard text input field.
Raw Value
Display Value
import { useViraMask } from '@virastack/input-mask';
import { useForm } from 'react-hook-form';
const form = useForm({ defaultValues: { text: '' } });
const { text } = useViraMask({
form,
schema: { text: 'text' },
});
<input {...text} />