30 lines
1013 B
TypeScript
30 lines
1013 B
TypeScript
import * as React from "react"
|
||
import * as ProgressPrimitive from "@radix-ui/react-progress"
|
||
|
||
import { cn, formatNumber } from "~/lib/utils"
|
||
|
||
const Progress = React.forwardRef<
|
||
React.ElementRef<typeof ProgressPrimitive.Root>,
|
||
React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>
|
||
>(({ className, value, ...props }, ref) => (
|
||
<ProgressPrimitive.Root
|
||
ref={ref}
|
||
className={cn(
|
||
"relative h-4 w-full overflow-hidden rounded-full bg-pr-gray",
|
||
className
|
||
)}
|
||
{...props}
|
||
>
|
||
<span className="left-0 text-sm absolute z-10 px-2 text-[#5F6284]">۰%</span>
|
||
<span className="w-full right-0 text-sm absolute z-10 px-2 text-[#5F6284]"
|
||
>{formatNumber(Math.ceil(value || 0 * 10) / 10)}%</span>
|
||
<ProgressPrimitive.Indicator
|
||
className="h-full w-full flex-1 bg-pr-green transition-all"
|
||
style={{ transform: `translateX(-${15 - (value || 0)}%)` }}
|
||
/>
|
||
</ProgressPrimitive.Root>
|
||
))
|
||
Progress.displayName = ProgressPrimitive.Root.displayName
|
||
|
||
export { Progress }
|