import { Card, CardContent } from '@heroui/react'; import type { ReactNode } from 'react'; type Props = { icon: ReactNode; label: string; value: number; }; export function ActivityTile({ icon, label, value }: Props) { return (
{icon}
{label}
{value}
); }