"use client"; import { Card, CardContent } from "@/components/ui/card"; import type { TopEstabelecimentosData } from "@/lib/top-estabelecimentos/fetch-data"; import { RiTrophyLine, RiFireLine } from "@remixicon/react"; type HighlightsCardsProps = { summary: TopEstabelecimentosData["summary"]; }; export function HighlightsCards({ summary }: HighlightsCardsProps) { return (

Mais Frequente

{summary.mostFrequent || "—"}

Maior Gasto Total

{summary.highestSpending || "—"}

); }