import type { ReactNode } from 'react'; export interface KpiCardProps { label: string; value: string; accent: string; bg: string; icon: ReactNode; } export function KpiCard({ label, value, accent, bg, icon }: KpiCardProps) { return (
{label} {icon}
{value}
); } const I = ({ d }: { d: string }) => ( ); export const IconVisits = ; export const IconCommands = ; export const IconProducts = ; export const IconRevenue = ;