nextuiq
Version:
NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat
10 lines (9 loc) • 386 B
TypeScript
export interface TablePaginationProps {
currentPage: number;
totalPages: number;
startIndex: number;
endIndex: number;
totalItems: number;
onPageChange: (page: number) => void;
}
export declare const TablePagination: ({ currentPage, totalPages, startIndex, endIndex, totalItems, onPageChange, }: TablePaginationProps) => import("react/jsx-runtime").JSX.Element;