import React from 'react'; import { LucideIcon } from 'lucide-react'; import { Link } from './Link'; import { Card } from './Card'; import { Box } from './Box'; import { Stack } from './Stack'; import { Text } from './Text'; import { Icon } from './Icon'; interface SponsorshipCategoryCardProps { icon: LucideIcon; title: string; count: number; impressions: number; color: string; href: string; } export function SponsorshipCategoryCard({ icon, title, count, impressions, color, href }: SponsorshipCategoryCardProps) { return ( {title} {count} active {impressions.toLocaleString()} impressions ); }