From 4d566696e294c0ad4ada6d43e5ea49977e21c2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alessandro=20Gon=C3=A7aalves?= Date: Mon, 20 Oct 2025 18:09:03 -0300 Subject: [PATCH] fix: troca dos emojs por icons --- src/app/DRE/teste.tsx | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/src/app/DRE/teste.tsx b/src/app/DRE/teste.tsx index b851a4b..4df3065 100644 --- a/src/app/DRE/teste.tsx +++ b/src/app/DRE/teste.tsx @@ -1,6 +1,6 @@ "use client"; -import { LoaderPinwheel } from "lucide-react"; +import { LoaderPinwheel, ChevronDown, ChevronRight } from "lucide-react"; import { useEffect, useState } from "react"; import AnaliticoComponent from "./analitico"; @@ -488,9 +488,11 @@ export default function Teste() { onClick={() => toggleGroup(row.grupo!)} className="p-2 hover:bg-blue-100 rounded-lg transition-all duration-200 flex items-center justify-center w-8 h-8 flex-shrink-0" > - - {row.isExpanded ? "▼" : "▶"} - + {row.isExpanded ? ( + + ) : ( + + )}