@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 PanelHeaderProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered inside the panel header */
children?: React.ReactNode;
/** Class to add to outer div */
className?: string;
}
export declare const PanelHeader: React.FunctionComponent<PanelHeaderProps>;
//# sourceMappingURL=PanelHeader.d.ts.map