@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
17 lines (16 loc) • 588 B
TypeScript
/**
* Web Pagination Component
*/
import type { ElementType, MouseEvent, ReactNode } from 'react';
export type InfinityScrollerProps = {
children?: ReactNode;
};
export default function InfinityScroller({ children, }: InfinityScrollerProps): any;
export declare function InfinityLoadButton({ element, pressedElement, icon, text, iconPosition, onClick, }: {
element?: ElementType;
pressedElement?: ReactNode;
icon?: string;
text?: string | null;
iconPosition?: 'left' | 'right';
onClick?: (e: MouseEvent) => void;
}): import("react/jsx-runtime").JSX.Element;