'use client'
import { cn } from '@admin/utils/shared/cn'
import { Progress as ProgressPrimitive } from '@base-ui/react/progress'
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 }