"use client"; import { cn } from "@/lib/utils/ui"; import type { CalendarEvent } from "@/components/calendario/types"; import { EVENT_TYPE_STYLES } from "@/components/calendario/day-cell"; const LEGEND_ITEMS: Array<{ type: CalendarEvent["type"]; label: string; }> = [ { type: "lancamento", label: "Lançamento financeiro" }, { type: "boleto", label: "Boleto com vencimento" }, { type: "cartao", label: "Vencimento de cartão" }, ]; export function CalendarLegend() { return (