From de7e86e1b76483aba6b4b6830af3aedaf8cacb76 Mon Sep 17 00:00:00 2001 From: Divya Jeevanantham <16463670+divya-jeevanantham@users.noreply.github.com> Date: Sat, 19 Oct 2024 09:34:59 +0200 Subject: [PATCH] Fix missing class error --- components/ui/progress.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/ui/progress.tsx b/components/ui/progress.tsx index 412e53c..68391e1 100644 --- a/components/ui/progress.tsx +++ b/components/ui/progress.tsx @@ -5,9 +5,13 @@ import * as ProgressPrimitive from "@radix-ui/react-progress" import { cn } from "@/lib/utils" +interface ProgressProps extends React.ComponentPropsWithoutRef { + indicatorClassName?: string; +} + const Progress = React.forwardRef< React.ElementRef, - React.ComponentPropsWithoutRef + ProgressProps >(({ indicatorClassName, className, value, ...props }, ref) => (