UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

48 lines (40 loc) 1.87 kB
import _extends from 'babel-runtime/helpers/extends'; import _defineProperty from 'babel-runtime/helpers/defineProperty'; import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _createClass from 'babel-runtime/helpers/createClass'; import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn'; import _inherits from 'babel-runtime/helpers/inherits'; var __rest = this && this.__rest || function (s, e) { var t = {}; for (var p in s) { if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; }if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0) t[p[i]] = s[p[i]]; }return t; }; import React from 'react'; import classNames from 'classnames'; var CardBody = function (_React$Component) { _inherits(CardBody, _React$Component); function CardBody() { _classCallCheck(this, CardBody); return _possibleConstructorReturn(this, (CardBody.__proto__ || Object.getPrototypeOf(CardBody)).apply(this, arguments)); } _createClass(CardBody, [{ key: 'render', value: function render() { var _classNames; var _a = this.props, prefixCls = _a.prefixCls, className = _a.className, restProps = __rest(_a, ["prefixCls", "className"]); var wrapCls = classNames((_classNames = {}, _defineProperty(_classNames, prefixCls + '-body', true), _defineProperty(_classNames, className, className), _classNames)); return React.createElement('div', _extends({ className: wrapCls }, restProps)); } }]); return CardBody; }(React.Component); export default CardBody; CardBody.defaultProps = { prefixCls: 'am-card' };