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