"use client"; import * as ProgressPrimitive from "@radix-ui/react-progress"; import { cn } from "@eloquent/styles"; import React from "react"; import { progressSlots } from "./variants"; const { indicatorStyle, rootStyle } = progressSlots(); export const Progress = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, value, ...props }, ref) => { return ( ); }); Progress.displayName = ProgressPrimitive.Root.displayName;