Skip to Content

Expiry

The expiry preset formats the input as an expiration date (MM/YY). It is commonly used for credit card expiration fields.

Raw Value
Display Value
import { useViraMask } from '@virastack/input-mask'; import { useForm } from 'react-hook-form'; const form = useForm({ defaultValues: { expiry: '' } }); const { expiry } = useViraMask({ form, schema: { expiry: 'expiry' }, }); <input {...expiry} />

© 2026 ViraStack. MIT License.