@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
14 lines (13 loc) • 478 B
TypeScript
import { PerPageOptions } from '@patternfly/react-core';
import { CSSProperties } from 'react';
export type PagePaginationProps = {
itemCount?: number;
page: number;
perPage: number;
setPage: (page: number) => void;
setPerPage: (perPage: number) => void;
style?: CSSProperties;
topBorder?: boolean;
perPageOptions?: PerPageOptions[];
};
export declare function PagePagination(props: PagePaginationProps): import("react/jsx-runtime").JSX.Element;