@dndbuilder.com/react
Version:
Drag and drop builder for React
9 lines • 408 B
TypeScript
export type PaginationProps = {
current: number;
totalPage: number;
className?: string;
onPageChange?: (page: number) => void;
disabled?: boolean;
} & React.HTMLProps<HTMLDivElement>;
export declare const BlockPagination: ({ current, totalPage, onPageChange, className, ...rest }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=block-pagination.d.ts.map