import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules } from './utils'; const propTypes = { tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]), className: PropTypes.string, cssModule: PropTypes.object, }; const defaultProps = { tag: 'h3' }; const PopoverHeader = (props) => { const { className, cssModule, tag: Tag, ...attributes } = props; const classes = mapToCssModules(classNames( className, 'popover-header' ), cssModule); return ( ); }; PopoverHeader.propTypes = propTypes; PopoverHeader.defaultProps = defaultProps; export default PopoverHeader;