芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/reactstrap/src/Card.js
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { tag: tagPropType, inverse: PropTypes.bool, color: PropTypes.string, body: PropTypes.bool, outline: PropTypes.bool, className: PropTypes.string, cssModule: PropTypes.object, innerRef: PropTypes.oneOfType([ PropTypes.object, PropTypes.string, PropTypes.func, ]), }; const defaultProps = { tag: 'div' }; const Card = (props) => { const { className, cssModule, color, body, inverse, outline, tag: Tag, innerRef, ...attributes } = props; const classes = mapToCssModules(classNames( className, 'card', inverse ? 'text-white' : false, body ? 'card-body' : false, color ? `${outline ? 'border' : 'bg'}-${color}` : false ), cssModule); return (
); }; Card.propTypes = propTypes; Card.defaultProps = defaultProps; export default Card;