Gazebo_simulation-Frontend/node_modules/reactstrap/es/CardFooter.js

30 lines
965 B
JavaScript

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
};
var defaultProps = {
tag: 'div'
};
var CardFooter = function CardFooter(props) {
var className = props.className,
cssModule = props.cssModule,
Tag = props.tag,
attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "tag"]);
var classes = mapToCssModules(classNames(className, 'card-footer'), cssModule);
return React.createElement(Tag, _extends({}, attributes, {
className: classes
}));
};
CardFooter.propTypes = propTypes;
CardFooter.defaultProps = defaultProps;
export default CardFooter;