"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 { AcceptedQuotationItem } from "./accepted-quotations-table-columns" interface AcceptedQuotationsTableToolbarActionsProps { table: Table onRefresh?: () => void } export function AcceptedQuotationsTableToolbarActions({ table, onRefresh }: AcceptedQuotationsTableToolbarActionsProps) { return (
{onRefresh && ( )}
) }