{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-group-17",
  "description": "Group with input and currency text",
  "registryDependencies": [
    "@coss/group",
    "@coss/input",
    "@coss/label"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-group-17.tsx",
      "content": "import { Group, GroupSeparator, GroupText } from \"@/registry/default/ui/group\";\nimport { Input } from \"@/registry/default/ui/input\";\nimport { Label } from \"@/registry/default/ui/label\";\n\nexport default function Particle() {\n  return (\n    <Group aria-label=\"Price input\">\n      <Input\n        aria-label=\"Enter the amount\"\n        className=\"text-right\"\n        defaultValue=\"100\"\n        id=\"amount\"\n        type=\"text\"\n      />\n      <GroupSeparator />\n      <GroupText render={<Label aria-label=\"Currency\" htmlFor=\"amount\" />}>\n        USD\n      </GroupText>\n    </Group>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "categories": [
    "group",
    "input"
  ],
  "type": "registry:block"
}