import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Popover/popover'; import { css } from '@patternfly/react-styles'; export interface PopoverBodyProps extends React.HTMLProps { /** Popover body id */ id: string; /** Popover body content */ children: React.ReactNode; /** Classes to be applied to the popover body. */ className?: string; } export const PopoverBody: React.FunctionComponent = ({ children, id, className, ...props }: PopoverBodyProps) => (
{children}
); PopoverBody.displayName = 'PopoverBody';