import type { LucideIcon } from 'lucide-react'; /** * Uniform card-header icon badge (Figma "Performance" spec): * 42px square, subtle white fill + hairline border, 13px radius, monochrome glyph. * Shared across every analytics card so the header treatment stays consistent. */ export function CardIcon({ icon: Icon, className = '' }: { icon: LucideIcon; className?: string }) { return (
); }