30 lines
813 B
JavaScript
30 lines
813 B
JavaScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import * as ProgressPrimitive from "@radix-ui/react-progress"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const Progress = React.forwardRef(({ className, value, ...props }, ref) => {
|
|
const percentage = (value || 0) / 100;
|
|
|
|
return (
|
|
<ProgressPrimitive.Root
|
|
ref={ref}
|
|
className={cn("relative h-4 w-full overflow-hidden rounded-full bg-secondary", className)}
|
|
{...props}
|
|
>
|
|
<ProgressPrimitive.Indicator
|
|
className={cn(
|
|
"h-full w-full flex-1 bg-[#FA6E53] transition-transform duration-300",
|
|
"ltr:origin-left rtl:origin-right"
|
|
)}
|
|
style={{ transform: `scaleX(${percentage})` }}
|
|
/>
|
|
</ProgressPrimitive.Root>
|
|
);
|
|
});
|
|
Progress.displayName = ProgressPrimitive.Root.displayName
|
|
|
|
export { Progress }
|