From d34c00a7405f205b9f9b9c1588e90e88d0af3f77 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:15 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/progress.tsx | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/components/ui/progress.tsx diff --git a/src/components/ui/progress.tsx b/src/components/ui/progress.tsx deleted file mode 100644 index 1741cd2..0000000 --- a/src/components/ui/progress.tsx +++ /dev/null @@ -1,25 +0,0 @@ -"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 };