mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
29 lines
718 B
TypeScript
29 lines
718 B
TypeScript
import { Field, FieldLabel } from "@/examples/base/ui/field"
|
|
import {
|
|
InputOTP,
|
|
InputOTPGroup,
|
|
InputOTPSeparator,
|
|
InputOTPSlot,
|
|
} from "@/examples/base/ui/input-otp"
|
|
|
|
export function InputOTPSimple() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="simple">Simple</FieldLabel>
|
|
<InputOTP id="simple" maxLength={6}>
|
|
<InputOTPGroup>
|
|
<InputOTPSlot index={0} />
|
|
<InputOTPSlot index={1} />
|
|
<InputOTPSlot index={2} />
|
|
</InputOTPGroup>
|
|
<InputOTPSeparator />
|
|
<InputOTPGroup>
|
|
<InputOTPSlot index={3} />
|
|
<InputOTPSlot index={4} />
|
|
<InputOTPSlot index={5} />
|
|
</InputOTPGroup>
|
|
</InputOTP>
|
|
</Field>
|
|
)
|
|
}
|