UNPKG

@useloops/design-system

Version:

The official React based Loops design system

14 lines (11 loc) 439 B
import { FunctionComponent, PropsWithChildren, ReactElement } from 'react'; interface PaginationControlProps extends PropsWithChildren { items: string[]; activeItem: string; onClickNext?: () => void; onClickPrevious?: () => void; renderTitle?: ReactElement; } declare const PaginationControl: FunctionComponent<PaginationControlProps>; export { PaginationControl as default }; export type { PaginationControlProps };