import React from 'react'; import { Box } from './Box'; import { Text } from './Text'; import { ProgressBar } from './ProgressBar'; interface CategoryDistributionCardProps { label: string; count: number; percentage: number; color: string; bgColor: string; borderColor: string; progressColor: string; } export function CategoryDistributionCard({ label, count, percentage, color, bgColor, borderColor, progressColor, }: CategoryDistributionCardProps) { return ( {count} {label} {percentage}% of drivers ); }