UNPKG

@ark-ui/react

Version:

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

7 lines (6 loc) 290 B
import { ReactNode } from 'react'; import { UsePaginationContext } from './use-pagination-context'; export interface PaginationContextProps { children: (context: UsePaginationContext) => ReactNode; } export declare const PaginationContext: (props: PaginationContextProps) => ReactNode;