This commit is contained in:
Arjun Patel
2026-06-01 14:17:58 -07:00
parent 580703fdf6
commit 52ff92083a
165 changed files with 3736 additions and 2907 deletions
+8 -8
View File
@@ -1,9 +1,9 @@
"use client"
'use client';
import * as React from "react"
import { Progress as ProgressPrimitive } from "radix-ui"
import * as React from 'react';
import { Progress as ProgressPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Progress({
className,
@@ -14,8 +14,8 @@ function Progress({
<ProgressPrimitive.Root
data-slot="progress"
className={cn(
"bg-muted h-1 rounded-full relative flex w-full items-center overflow-x-hidden",
className
'bg-muted h-1 rounded-full relative flex w-full items-center overflow-x-hidden',
className,
)}
{...props}
>
@@ -25,7 +25,7 @@ function Progress({
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
/>
</ProgressPrimitive.Root>
)
);
}
export { Progress }
export { Progress };