{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-102",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/button.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-102.tsx",
      "content": "import { ChevronDownIcon, ChevronUpIcon } from \"lucide-react\";\n\nimport { Button } from \"@/registry/default/ui/button\";\n\nexport default function Component() {\n  return (\n    <div className=\"-space-x-px inline-flex rounded-md shadow-xs rtl:space-x-reverse\">\n      <Button\n        aria-label=\"Upvote\"\n        className=\"rounded-none shadow-none first:rounded-s-md last:rounded-e-md focus-visible:z-10\"\n        size=\"icon\"\n        variant=\"outline\"\n      >\n        <ChevronUpIcon aria-hidden=\"true\" size={16} />\n      </Button>\n      <span className=\"flex items-center border border-input px-3 font-medium text-sm\">\n        235\n      </span>\n      <Button\n        aria-label=\"Downvote\"\n        className=\"rounded-none shadow-none first:rounded-s-md last:rounded-e-md focus-visible:z-10\"\n        size=\"icon\"\n        variant=\"outline\"\n      >\n        <ChevronDownIcon aria-hidden=\"true\" size={16} />\n      </Button>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "style": 2,
    "tags": [
      "button",
      "vote",
      "counter"
    ]
  }
}