update card icon ui (#50)

* feat: update icons in various components and improve styling for better UI consistency
This commit is contained in:
chenghh-9609
2025-10-31 16:07:32 +08:00
committed by GitHub
parent ba0c69086a
commit a055546873
9 changed files with 22 additions and 35 deletions

View File

@@ -140,7 +140,7 @@ const Filters: React.FC<FiltersProps> = ({
className="cursor-pointer hover:text-blue-500"
></Button>
</Tooltip>
<h4></h4>
<span></span>
</h3>
{hasActiveFilters && (
<span

View File

@@ -1,9 +1,9 @@
import { Boxes } from "lucide-react";
import { Code } from "lucide-react";
import { OperatorI } from "./operator.model";
export const mapOperator = (op: OperatorI) => {
return {
...op,
icon: <Boxes className="w-5 h-5 text-gray-500" />,
icon: <Code className="w-full h-full" />,
};
};