UNPKG

bigblocks

Version:

Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React

8 lines (7 loc) 656 B
import { jsx as _jsx } from "react/jsx-runtime"; import * as ProgressPrimitive from "@radix-ui/react-progress"; import * as React from "react"; import { cn } from "../../lib/utils"; const Progress = React.forwardRef(({ className, value, ...props }, ref) => (_jsx(ProgressPrimitive.Root, { ref: ref, className: cn("relative h-4 w-full overflow-hidden rounded-full bg-secondary", className), ...props, children: _jsx(ProgressPrimitive.Indicator, { className: "h-full w-full flex-1 bg-primary transition-all", style: { transform: `translateX(-${100 - (value || 0)}%)` } }) }))); Progress.displayName = ProgressPrimitive.Root.displayName; export { Progress };