{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "components-radix-progress",
  "title": "Progress",
  "description": "Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.",
  "registryDependencies": [
    "@animate-ui/primitives-radix-progress"
  ],
  "files": [
    {
      "path": "registry/components/radix/progress/index.tsx",
      "content": "import * as React from 'react';\n\nimport {\n  Progress as ProgressPrimitive,\n  ProgressIndicator as ProgressIndicatorPrimitive,\n  type ProgressProps as ProgressPrimitiveProps,\n} from '@/components/animate-ui/primitives/radix/progress';\nimport { cn } from '@/lib/utils';\n\ntype ProgressProps = ProgressPrimitiveProps;\n\nfunction Progress({ className, ...props }: ProgressProps) {\n  return (\n    <ProgressPrimitive\n      className={cn(\n        'bg-primary/20 relative h-2 w-full overflow-hidden rounded-full',\n        className,\n      )}\n      {...props}\n    >\n      <ProgressIndicatorPrimitive className=\"bg-primary rounded-full h-full w-full flex-1\" />\n    </ProgressPrimitive>\n  );\n}\n\nexport { Progress, type ProgressProps };\n",
      "type": "registry:ui",
      "target": "components/animate-ui/components/radix/progress.tsx"
    }
  ],
  "type": "registry:ui"
}