UNPKG

@coreui/react

Version:

UI Components Library for React.js

17 lines (16 loc) 553 B
import React, { HTMLAttributes } from 'react'; export interface CPaginationProps extends HTMLAttributes<HTMLUListElement> { /** * Set the alignment of pagination components. */ align?: 'start' | 'center' | 'end'; /** * A string of all className you want applied to the base component. */ className?: string; /** * Size the component small or large. */ size?: 'sm' | 'lg'; } export declare const CPagination: React.ForwardRefExoticComponent<CPaginationProps & React.RefAttributes<HTMLUListElement>>;