32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
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 text-sm absolute z-10 px-2 text-[#5F6284]"
|
||
style={{ transform: `translateX(-${10 - (value || 0)}%)` }}
|
||
>{formatNumber(Math.ceil(value || 0 * 10) / 10)}%</span>
|
||
<span className="right-0 text-sm absolute z-10 px-2 text-[#5F6284]">{formatNumber(.2)}%</span>
|
||
<ProgressPrimitive.Indicator
|
||
className="h-full w-full flex-1 bg-primary transition-all"
|
||
style={{ transform: `translateX(-${20 - (value || 0)}%)` }}
|
||
/>
|
||
</ProgressPrimitive.Root>
|
||
))
|
||
Progress.displayName = ProgressPrimitive.Root.displayName
|
||
|
||
export { Progress }
|