UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

21 lines (20 loc) 444 B
import React from "react"; import { EColor } from "enum"; import "./index.scss"; export declare enum EPaginationSize { XS = "xs", S = "s", M = "m", L = "l", XL = "xl" } interface IProps { pageCount?: number; postCount: number; className?: string; color?: EColor; queryString?: string; size?: EPaginationSize; } declare const Pagination: React.NamedExoticComponent<IProps>; export default Pagination;