export function RiskBar({ label, count, total, color, }: { label: string count: number total: number color: string }) { const percentage = total > 0 ? (count / total) * 100 : 0 return (