import { Progress, ProgressIndicator, ProgressTrack, } from '@evobgp/ui/components/progress' import { cn } from '@evobgp/ui/lib/utils' export function AnalyticsProgress({ label, hint, value, className, }: { label: string hint?: string value: number className?: string }) { const clamped = Math.max(0, Math.min(100, value)) return (
{label} {clamped}%
{hint ?

{hint}

: null}
) }