46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { cn } from '@/utils/cn';
|
|
import { round } from '@/utils/math';
|
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
import * as React from 'react';
|
|
|
|
const Progress = React.forwardRef<
|
|
React.ElementRef<typeof ProgressPrimitive.Root>,
|
|
React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> & {
|
|
size?: 'sm' | 'default' | 'lg';
|
|
innerClassName?: string;
|
|
}
|
|
>(({ className, innerClassName, value, size = 'default', ...props }, ref) => (
|
|
<ProgressPrimitive.Root
|
|
ref={ref}
|
|
className={cn(
|
|
'relative h-4 w-full min-w-16 overflow-hidden rounded bg-def-200 shadow-sm',
|
|
size === 'sm' && 'h-2',
|
|
size === 'lg' && 'h-5',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<ProgressPrimitive.Indicator
|
|
className={cn(
|
|
'h-full w-full flex-1 rounded bg-primary transition-all',
|
|
innerClassName,
|
|
)}
|
|
style={{
|
|
transform: `translateX(-${100 - (value || 0)}%)`,
|
|
}}
|
|
/>
|
|
{value && size !== 'sm' && (
|
|
<div
|
|
className={
|
|
'z-5 absolute bottom-0 top-0 flex items-center px-2 text-sm font-medium font-mono'
|
|
}
|
|
>
|
|
<div>{round(value, 2)}%</div>
|
|
</div>
|
|
)}
|
|
</ProgressPrimitive.Root>
|
|
));
|
|
Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
|
|
export { Progress };
|