import * as React from "react";
import * as ProgressPrimitive from "@radix-ui/react-progress";

import { cn } from "C/lib/utils";

const Progress = React.forwardRef(({ className, value, ...props }, ref) => (
  <ProgressPrimitive.Root
    ref={ref}
    className={cn(
      "relative h-2 w-full overflow-hidden rounded-full bg-background-secondary",
      className
    )}
    {...props}
  >
    <ProgressPrimitive.Indicator
      className="h-full w-full flex-1 bg-[linear-gradient(90deg,#00D202_0%,#23C6CF_100%)] transition-all"
      style={{
        transform: `translateX(-${100 - (value === 0 ? -1 : value || -1)}%)`,
      }}
    />
  </ProgressPrimitive.Root>
));
Progress.displayName = ProgressPrimitive.Root.displayName;

export { Progress };
