import React from 'react'; const InfoCard = ( { icon: Icon, customIcon, title, value, sub, onClick }: { icon?: React.ElementType; customIcon?: React.ReactNode; title: string; value: string | number; sub: string; onClick?: () => void; } ) => { return (
{ value }
{ sub }