export type AgentOverviewCardProps = { title: string; icon: { ref: React.ReactNode; color: string; bgColor: string; }; }; export function AgentOverviewCard({ props, }: { props: AgentOverviewCardProps; }) { return (

{props.title}

0

{props.icon.ref}
); }