@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
9 lines • 373 B
TypeScript
import * as React from 'react';
export interface PanelFooterProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered inside the panel footer */
children?: React.ReactNode;
/** Class to add to outer div */
className?: string;
}
export declare const PanelFooter: React.FunctionComponent<PanelFooterProps>;
//# sourceMappingURL=PanelFooter.d.ts.map