@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
8 lines (7 loc) • 478 B
TypeScript
import React from 'react';
import { IPagination } from './types/pagination';
declare const PaginationBoundary: <V extends string | unknown>(props: IPagination<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
declare const Pagination: <V extends string | unknown>(props: React.PropsWithChildren<IPagination<V>> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof PaginationBoundary>;
export { Pagination };