From a24b580da20d08d6f1bd39d0542b986d0685b965 Mon Sep 17 00:00:00 2001 From: AdityaJ2305 Date: Wed, 25 Dec 2024 01:56:52 +0530 Subject: [PATCH] removed buttonv2 fully --- src/components/Common/Export.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/components/Common/Export.tsx b/src/components/Common/Export.tsx index 7427904d20e..60e00569a1e 100644 --- a/src/components/Common/Export.tsx +++ b/src/components/Common/Export.tsx @@ -8,7 +8,6 @@ import { DropdownMenuTrigger, } from "@/components/ui/dropdown-menu"; -import ButtonV2 from "@/components/Common/ButtonV2"; import { ShadcnMenuDropdownItemProps } from "@/components/Common/Menu"; import useExport from "@/hooks/useExport"; @@ -158,7 +157,7 @@ export const ExportButton = ({ return ( <> - { let action = props.action; @@ -173,9 +172,7 @@ export const ExportButton = ({ } }} className="tooltip mx-2 p-4 text-lg text-secondary-800 disabled:bg-transparent disabled:text-secondary-500" - variant="secondary" - ghost - circle + variant="link" > {isExporting ? ( @@ -184,8 +181,8 @@ export const ExportButton = ({ )} {props.tooltip || "Export"} - - + {" "} + ); };