{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "progress", "title": "Progress", "description": "Progress indicator bar", "dependencies": [ "radix-ui" ], "registryDependencies": [ "utils" ], "files": [ { "path": "registry/ui/progress.tsx", "content": "\"use client\"\n\nimport * as React from \"react\"\nimport { Progress as ProgressPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Progress({\n className,\n value,\n ...props\n}: React.ComponentProps) {\n return (\n \n \n \n )\n}\n\nexport { Progress }\n", "type": "registry:ui" } ], "type": "registry:ui" }