@geezee/react-ui
Version:
Modern and minimalist React UI library.
13 lines (12 loc) • 510 B
TypeScript
import React, { ReactNode } from 'react';
import { NormalSizes } from '../utils/prop-types';
interface Props {
count: number;
size?: NormalSizes;
labelJumperBefore?: ReactNode | string;
labelJumperAfter?: ReactNode | string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type PaginationQuickJumperProps = React.PropsWithChildren<Props & NativeAttrs>;
declare const PaginationNext: React.FC<PaginationQuickJumperProps>;
export default PaginationNext;