UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

17 lines (16 loc) 764 B
import { ElementType, ForwardedRef } from 'react'; export type PaginationOverflowProperties = { /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Element to show hidden elements within pagination component, usually used with ellipsis icon. * @docs {@link https://design.visa.com/react/components/pagination | See Docs} */ declare const _default: <HTMLElementType = HTMLLIElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & PaginationOverflowProperties) => import("react").ReactElement; export default _default;