import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Popover/popover'; export interface PopoverHeaderIconProps extends React.HTMLProps { /** Content of the header icon */ children: React.ReactNode; /** Class to be applied to the header icon */ className?: string; } export const PopoverHeaderIcon: React.FunctionComponent = ({ children, className, ...props }: PopoverHeaderIconProps) => ( {children} ); PopoverHeaderIcon.displayName = 'PopoverHeaderIcon';