From 56a23c40cfb5f3fd1b0ed29595f7dae4a2eb4faa Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sat, 21 Mar 2026 14:05:39 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20corrige=20=C3=ADcones=20e=20cor=20nos=20?= =?UTF-8?q?cards=20de=20m=C3=A9tricas=20do=20dashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Troca as setas de receita/despesa (estavam invertidas) e ajusta a cor do card de saldo para cyan-600. Co-Authored-By: Claude Sonnet 4.6 --- .../dashboard/components/dashboard-metrics-cards.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/dashboard/components/dashboard-metrics-cards.tsx b/src/features/dashboard/components/dashboard-metrics-cards.tsx index 2a901f0..6b5ca54 100644 --- a/src/features/dashboard/components/dashboard-metrics-cards.tsx +++ b/src/features/dashboard/components/dashboard-metrics-cards.tsx @@ -33,7 +33,7 @@ const CARDS = [ label: "Receitas", subtitle: "Entradas do período", key: "receitas", - icon: RiArrowUpLine, + icon: RiArrowDownLine, invertTrend: false, iconClass: "text-success", }, @@ -41,7 +41,7 @@ const CARDS = [ label: "Despesas", subtitle: "Saídas do período", key: "despesas", - icon: RiArrowDownLine, + icon: RiArrowUpLine, invertTrend: true, iconClass: "text-destructive", }, @@ -59,7 +59,7 @@ const CARDS = [ key: "previsto", icon: RiCalendarCheckLine, invertTrend: false, - iconClass: "text-primary", + iconClass: "text-cyan-600", }, ] as const;