From 4b2d468701ab069fdc2347f345da56abe37c70be Mon Sep 17 00:00:00 2001 From: rlaks5757 Date: Fri, 28 Mar 2025 14:25:29 +0900 Subject: Reapply "Merge branch 'dev' into feature/kiman" This reverts commit 494a473964fa85b36c7846750c3a012a3c8468c7. --- lib/poa/table/poa-table-toolbar-actions.tsx | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 lib/poa/table/poa-table-toolbar-actions.tsx (limited to 'lib/poa/table/poa-table-toolbar-actions.tsx') diff --git a/lib/poa/table/poa-table-toolbar-actions.tsx b/lib/poa/table/poa-table-toolbar-actions.tsx new file mode 100644 index 00000000..97a9cc55 --- /dev/null +++ b/lib/poa/table/poa-table-toolbar-actions.tsx @@ -0,0 +1,45 @@ +"use client" + +import * as React from "react" +import { type Table } from "@tanstack/react-table" +import { Download, RefreshCcw } from "lucide-react" + +import { exportTableToExcel } from "@/lib/export" +import { Button } from "@/components/ui/button" +import { POADetail } from "@/db/schema/contract" + +interface ItemsTableToolbarActionsProps { + table: Table +} + +export function PoaTableToolbarActions({ table }: ItemsTableToolbarActionsProps) { + return ( +
+ {/** Refresh 버튼 */} + + + {/** Export 버튼 */} + +
+ ) +} \ No newline at end of file -- cgit v1.2.3