UNPKG

@starter-ui/core

Version:

This is a UI Components built with the utility classes from Tailwind CSS.

17 lines (16 loc) 428 B
import { default as React, ReactNode } from 'react'; export interface Props { current: number; total: number; pageSize: number; size?: string; color?: string; outline?: boolean; disabled?: boolean; showTotal?: boolean; totalLabel?: ReactNode; className?: string; onChange?: (page: number, size: number) => void; } declare const Pagination: React.FC<Props>; export default Pagination;