{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "input-otp-demo",
  "title": "Input otp Demo",
  "description": "Usage example for the ai2 input-otp component.",
  "registryDependencies": [
    "@ai2/input-otp"
  ],
  "files": [
    {
      "path": "registry/ai2/examples/input-otp-demo.tsx",
      "content": "\"use client\"\n\nimport {\n  InputOTP,\n  InputOTPGroup,\n  InputOTPSeparator,\n  InputOTPSlot,\n} from \"@/registry/ai2/ui/input-otp\"\n\nexport default function InputOTPDemo() {\n  return (\n    <InputOTP maxLength={6}>\n      <InputOTPGroup>\n        <InputOTPSlot index={0} />\n        <InputOTPSlot index={1} />\n        <InputOTPSlot index={2} />\n      </InputOTPGroup>\n      <InputOTPSeparator />\n      <InputOTPGroup>\n        <InputOTPSlot index={3} />\n        <InputOTPSlot index={4} />\n        <InputOTPSlot index={5} />\n      </InputOTPGroup>\n    </InputOTP>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}