URL
The url preset formats and validates URL inputs. It ensures the input follows a valid URL structure.
Raw Value
Display Value
import { useViraMask } from '@virastack/input-mask';
import { useForm } from 'react-hook-form';
const form = useForm({ defaultValues: { url: '' } });
const { url } = useViraMask({
form,
schema: { url: 'url' },
});
<input {...url} />