UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

15 lines (14 loc) 562 B
import React, { ReactNode } from 'react'; import { NormalSizes } from '../utils/prop-types'; interface Props { pageSizeOptions: string[]; pageSize: number; size?: NormalSizes; total?: number; labelPageSizeBefore?: ReactNode | string; labelPageSizeAfter?: ReactNode | string; } declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>; export declare type PaginationPageSizeProps = React.PropsWithChildren<Props & NativeAttrs>; declare const PaginationNext: React.FC<PaginationPageSizeProps>; export default PaginationNext;