@cfxjs/react-ui
Version:
Modern and minimalist React UI library.
11 lines (10 loc) • 397 B
TypeScript
import React from 'react';
interface Props {
active?: boolean;
disabled?: boolean;
onClick?: (e: React.MouseEvent) => void;
}
declare type NativeAttrs = Omit<React.ButtonHTMLAttributes<any>, keyof Props>;
export declare type PaginationItemProps = React.PropsWithChildren<Props & NativeAttrs>;
declare const PaginationItem: React.FC<PaginationItemProps>;
export default PaginationItem;