UNPKG

reactstrap

Version:
26 lines (19 loc) 596 B
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { tag: tagPropType, className: PropTypes.string, cssModule: PropTypes.object, }; function PopoverHeader(props) { const { className, cssModule, tag: Tag = 'h3', ...attributes } = props; const classes = mapToCssModules( classNames(className, 'popover-header'), cssModule, ); return <Tag {...attributes} className={classes} />; } PopoverHeader.propTypes = propTypes; export default PopoverHeader;