{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "option-preview",
  "title": "Option Preview",
  "description": "option-preview",
  "dependencies": [
    "cn"
  ],
  "files": [
    {
      "path": "src/components/examples/outside/option-preview.tsx",
      "content": "'use client'\n\nimport type React from 'react'\nimport { cn } from 'cn'\n\nexport function OptionPreview({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {\n  return (\n    <div\n      className={cn('absolute top-4 left-4 inline-flex min-w-32 flex-col gap-1', className)}\n      {...props}\n    />\n  )\n}\n",
      "type": "registry:page",
      "target": "app/option-preview/page.tsx"
    }
  ],
  "type": "registry:page"
}