import { Row } from "./layout"; import { TYPOGRAPHY } from "./constants"; import type { LucideIcon } from "../../icons/lucide"; interface StatItemProps { Icon: LucideIcon; value: string | number; } export function StatItem({ Icon, value }: StatItemProps) { return ( {value} ); }