interface BarChartProps { data: { label: string; value: number; color: string }[]; maxValue: number; } export function HorizontalBarChart({ data, maxValue }: BarChartProps) { return (