UNPKG

reactstrap

Version:
28 lines (22 loc) 718 B
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { /** Add custom class */ className: PropTypes.string, /** Change underlying component's CSS base class name */ cssModule: PropTypes.object, /** Set a custom element for this component */ tag: tagPropType, }; function CardHeader(props) { const { className, cssModule, tag: Tag = 'div', ...attributes } = props; const classes = mapToCssModules( classNames(className, 'card-header'), cssModule, ); return <Tag {...attributes} className={classes} />; } CardHeader.propTypes = propTypes; export default CardHeader;