|
123456789101112131415161718192021222324252627282930313233 |
- import _extends from "@babel/runtime/helpers/esm/extends";
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
- import React from 'react';
- import PropTypes from 'prop-types';
- import classNames from 'classnames';
- import { mapToCssModules, tagPropType } from './utils';
- var propTypes = {
- tag: tagPropType,
- className: PropTypes.string,
- cssModule: PropTypes.object,
- innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.string, PropTypes.func])
- };
- var defaultProps = {
- tag: 'div'
- };
-
- var CardBody = function CardBody(props) {
- var className = props.className,
- cssModule = props.cssModule,
- innerRef = props.innerRef,
- Tag = props.tag,
- attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "innerRef", "tag"]);
-
- var classes = mapToCssModules(classNames(className, 'card-body'), cssModule);
- return React.createElement(Tag, _extends({}, attributes, {
- className: classes,
- ref: innerRef
- }));
- };
-
- CardBody.propTypes = propTypes;
- CardBody.defaultProps = defaultProps;
- export default CardBody;
|