import { ChevronLeftIcon, ChevronRightIcon, DoubleArrowLeftIcon, DoubleArrowRightIcon } from "@radix-ui/react-icons"; import { Table } from "@tanstack/react-table"; import { Button } from "@app/components/ui/button"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@app/components/ui/select"; interface DataTablePaginationProps { table: Table; } export function DataTablePagination({ table }: DataTablePaginationProps) { return (
Page {table.getState().pagination.pageIndex + 1} of{" "} {table.getPageCount()}
); }