{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-progress-3",
  "description": "Progress with formatted value",
  "registryDependencies": [
    "@coss/progress"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-progress-3.tsx",
      "content": "\"use client\";\n\nimport {\n  Progress,\n  ProgressIndicator,\n  ProgressLabel,\n  ProgressTrack,\n  ProgressValue,\n} from \"@/registry/default/ui/progress\";\n\nexport default function Particle() {\n  return (\n    <Progress max={512} value={502}>\n      <div className=\"flex items-center justify-between gap-2\">\n        <ProgressLabel>Upload</ProgressLabel>\n        <ProgressValue>{(_formatted, value) => `${value} / 512`}</ProgressValue>\n      </div>\n      <ProgressTrack>\n        <ProgressIndicator />\n      </ProgressTrack>\n    </Progress>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "meta": {
    "className": "**:data-[slot=preview]:w-full **:data-[slot=preview]:max-w-64"
  },
  "categories": [
    "progress"
  ],
  "type": "registry:block"
}