Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/pin-input.md
1# PinInput23An input element to enter a pin.45> Based on [Reka UI PinInput](https://reka-ui.com/docs/components/pin-input)67## Key Props89- `type`: to change the input type.10- `mask`: to treat the input like a password.11- `otp`: to enable One-Time Password functionality.12- `length`: to change the amount of inputs.13- `placeholder`: to set a placeholder text.14- `color`: to change the ring color when the PinInput is focused.15- `variant`: to change the variant of the PinInput.16- `size`: to change the size of the PinInput.17- `disabled`: to disable the PinInput.1819## Usage2021```vue22<UPinInput23<!-- props here -->24/>25```26