UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 489 B
import { EllipsisProps } from '@zag-js/pagination'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface PaginationEllipsisBaseProps extends EllipsisProps, PolymorphicProps { } export interface PaginationEllipsisProps extends HTMLProps<'div'>, PaginationEllipsisBaseProps { } export declare const PaginationEllipsis: ForwardRefExoticComponent<PaginationEllipsisProps & RefAttributes<HTMLDivElement>>;