{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "input-otp-demo",
  "registryDependencies": [
    "@delta/input-otp"
  ],
  "files": [
    {
      "path": "examples/input-otp-demo.tsx",
      "content": "\"use client\"\n\nimport {\n  InputOTP,\n  InputOTPGroup,\n  InputOTPSlot,\n} from \"@/components/ui/input-otp\"\nimport { Label } from \"@/components/ui/label\"\n\nexport default function InputOTPDemo() {\n  return (\n    <div className=\"space-y-2\">\n      <Label htmlFor=\"input-otp\">One-Time Password</Label>\n      <InputOTP id=\"input-otp\" maxLength={6}>\n        <InputOTPGroup>\n          <InputOTPSlot index={0} />\n          <InputOTPSlot index={1} />\n          <InputOTPSlot index={2} />\n          <InputOTPSlot index={3} />\n          <InputOTPSlot index={4} />\n          <InputOTPSlot index={5} />\n        </InputOTPGroup>\n      </InputOTP>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}