@elacity-js/uikit
Version:
React / Material UI Design kit for Elacity project
8 lines (7 loc) • 310 B
TypeScript
/// <reference types="react" />
import type { PaginationProps as MuiPaginationProps } from '@mui/material/Pagination';
export interface PaginationProps extends MuiPaginationProps {
perPage: number;
}
declare const _default: ({ perPage, ...props }: PaginationProps) => JSX.Element;
export default _default;