{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "badge-with-icon",
  "type": "registry:component",
  "title": "Badge",
  "author": "Toby Belhome",
  "description": "Displays a badge or status indicator.",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "badge"
  ],
  "files": [
    {
      "path": "examples/components/badge/with-icon/page.tsx",
      "content": "import { Badge } from \"@/components/ui/badge\";\nimport { CheckIcon } from \"lucide-react\";\n\nexport default function BadgeWithIcon() {\n  return (\n    <Badge variant=\"outline\">\n      <CheckIcon className=\"size-3 text-green-700\" />\n      Completed\n    </Badge>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/badge-with-icon.tsx"
    }
  ],
  "meta": {
    "isPro": false
  }
}