{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "radix-progress", "type": "registry:ui", "title": "Progress", "description": "Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.", "dependencies": [ "motion", "radix-ui" ], "files": [ { "path": "registry/radix/progress/index.tsx", "content": "'use client';\n\nimport * as React from 'react';\nimport { Progress as ProgressPrimitive } from 'radix-ui';\nimport { motion, type Transition } from 'motion/react';\n\nimport { cn } from '@/lib/utils';\n\nconst MotionProgressIndicator = motion.create(ProgressPrimitive.Indicator);\n\ntype ProgressProps = React.ComponentProps & {\n transition?: Transition;\n};\n\nfunction Progress({\n className,\n value,\n transition = { type: 'spring', stiffness: 100, damping: 30 },\n ...props\n}: ProgressProps) {\n return (\n \n \n \n );\n}\n\nexport { Progress, type ProgressProps };\n", "type": "registry:ui", "target": "components/animate-ui/radix/progress.tsx" } ] }