import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Popover/popover'; import { css } from '@patternfly/react-styles'; export interface PopoverFooterProps extends React.HTMLProps { /** Additional classes added to the Popover footer */ className?: string; /** Footer node */ children: React.ReactNode; } export const PopoverFooter: React.FunctionComponent = ({ children, className = '', ...props }: PopoverFooterProps) => ( ); PopoverFooter.displayName = 'PopoverFooter';