@voilajsx/uikit
Version:
Cross-platform React components with beautiful themes and OKLCH color science
28 lines (27 loc) • 786 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { forwardRef } from "react";
import * as ProgressPrimitive from "@radix-ui/react-progress";
import { cn } from "./utils.js";
const Progress = forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsx(
ProgressPrimitive.Root,
{
ref,
className: cn(
"relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
className
),
...props,
children: /* @__PURE__ */ 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
};
//# sourceMappingURL=progress.js.map