@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
15 lines (14 loc) • 677 B
TypeScript
import type { ComponentPropsWithRef, ElementType } from 'react';
export type PaginationOverflowProperties<ET extends ElementType = 'li'> = {
/** Tag of Component */
tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
* Element to show hidden elements within pagination component, usually used with ellipsis icon.
* @docs {@link https://design.visa.com/components/pagination/?code_library=react | See Docs}
*/
declare const PaginationOverflow: {
<ET extends ElementType = "li">({ className, tag: Tag, ...remainingProps }: PaginationOverflowProperties<ET>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default PaginationOverflow;