UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

9 lines (8 loc) 321 B
import type { PropsWithChildren } from 'react'; import type { PaginationSize } from './Pagination'; interface EllipsisItemProps { disabled: boolean; size: PaginationSize; } declare function EllipsisItem({ disabled, size, }: PropsWithChildren<EllipsisItemProps>): JSX.Element; export default EllipsisItem;