From dfbedc71fd4fb9fff454d6af39e75934aa307e49 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:53 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/progress.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/components/ui/progress.tsx diff --git a/src/components/ui/progress.tsx b/src/components/ui/progress.tsx new file mode 100644 index 0000000..1741cd2 --- /dev/null +++ b/src/components/ui/progress.tsx @@ -0,0 +1,25 @@ +"use client"; + +import * as React from "react"; +import * as ProgressPrimitive from "@radix-ui/react-progress"; + +import { cn } from "@/lib/utils"; + +const Progress = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>(({ className, value, ...props }, ref) => ( + + + +)); +Progress.displayName = ProgressPrimitive.Root.displayName; + +export { Progress };