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 CardFooter(props) { const { className, cssModule, tag: Tag = 'div', ...attributes } = props; const classes = mapToCssModules( classNames(className, 'card-footer'), cssModule, ); return ; } CardFooter.propTypes = propTypes; export default CardFooter;