react-code-dataset / tabler-react /src /components /Form /FormMaskedInput.examples.md
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
```jsx
<Form.Group label="Date">
<Form.MaskedInput
placeholder="00/00/0000"
mask={[/\d/, /\d/, "/", /\d/, /\d/, "/", /\d/, /\d/, /\d/, /\d/]}
/>
</Form.Group>
```