diff options
| author | joonhoekim <26rote@gmail.com> | 2025-07-09 12:45:15 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-07-09 12:45:15 +0000 |
| commit | e78dec9c4d51f2f2741edc6da6c2afa18e418f15 (patch) | |
| tree | 50c26bc95e734a7a174454579a023831c0e131b7 /lib/tech-vendor-rfq-response/vendor-rfq-table/rfqs-table-toolbar-actions.tsx | |
| parent | ad4855620f4aa80841c4d7b1aa39d19ab2205f0e (diff) | |
(최겸) 미사용 파일 제거 (기술영업)
Diffstat (limited to 'lib/tech-vendor-rfq-response/vendor-rfq-table/rfqs-table-toolbar-actions.tsx')
| -rw-r--r-- | lib/tech-vendor-rfq-response/vendor-rfq-table/rfqs-table-toolbar-actions.tsx | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/tech-vendor-rfq-response/vendor-rfq-table/rfqs-table-toolbar-actions.tsx b/lib/tech-vendor-rfq-response/vendor-rfq-table/rfqs-table-toolbar-actions.tsx deleted file mode 100644 index 1bae99ef..00000000 --- a/lib/tech-vendor-rfq-response/vendor-rfq-table/rfqs-table-toolbar-actions.tsx +++ /dev/null @@ -1,40 +0,0 @@ -"use client" - -import * as React from "react" -import { type Table } from "@tanstack/react-table" -import { Download, Upload } from "lucide-react" -import { toast } from "sonner" - -import { exportTableToExcel } from "@/lib/export" -import { Button } from "@/components/ui/button" -import { RfqWithAll } from "../types" - - -interface RfqsTableToolbarActionsProps { - table: Table<RfqWithAll> -} - -export function RfqsVendorTableToolbarActions({ table }: RfqsTableToolbarActionsProps) { - - - return ( - <div className="flex items-center gap-2"> - - {/** 4) Export 버튼 */} - <Button - variant="outline" - size="sm" - onClick={() => - exportTableToExcel(table, { - filename: "tasks", - excludeColumns: ["select", "actions"], - }) - } - className="gap-2" - > - <Download className="size-4" aria-hidden="true" /> - <span className="hidden sm:inline">Export</span> - </Button> - </div> - ) -}
\ No newline at end of file |
