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

Mais Frequente

{summary.mostFrequent || "—"}

Maior Gasto Total

{summary.highestSpending || "—"}

); }