'use client';
import { Progress as ProgressPrimitive } from '@base-ui/react/progress';
import { cn } from '@/lib/utils';
function Progress({ className, children, value, ...props }: ProgressPrimitive.Root.Props) {
return (
{children}
);
}
function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props) {
return (
);
}
function ProgressIndicator({ className, ...props }: ProgressPrimitive.Indicator.Props) {
return (
);
}
function ProgressLabel({ className, ...props }: ProgressPrimitive.Label.Props) {
return (
);
}
function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props) {
return (
);
}
export { Progress, ProgressTrack, ProgressIndicator, ProgressLabel, ProgressValue };