@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
15 lines • 616 B
TypeScript
import * as React from 'react';
export interface ToggleTemplateProps {
/** The first index of the items being paginated */
firstIndex?: number;
/** The last index of the items being paginated */
lastIndex?: number;
/** The total number of items being paginated */
itemCount?: number;
/** The type or title of the items being paginated */
itemsTitle?: string;
/** The word that joins the index and itemCount/itemsTitle */
ofWord?: React.ReactNode;
}
export declare const ToggleTemplate: React.FunctionComponent<ToggleTemplateProps>;
//# sourceMappingURL=ToggleTemplate.d.ts.map