import React from 'react'; import { Box } from './primitives/Box'; import { Text } from './Text'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; interface CategoryDistributionCardProps { label: string; count: number; percentage: number; icon: LucideIcon; color: string; bgColor: string; borderColor: string; } export function CategoryDistributionCard({ label, count, percentage, icon, color, bgColor, borderColor, }: CategoryDistributionCardProps) { return ( {count} {label} {percentage.toFixed(1)}% of total ); }