import { Typography, Card } from "@material-tailwind/react"; interface StatsCardProps { count: string; title: string; } export function StatsCard({ count, title }: StatsCardProps) { return ( {count} {title} ); } export default StatsCard;