UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

53 lines (46 loc) 1.9 kB
import _extends from 'babel-runtime/helpers/extends'; 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 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; import React from 'react'; import { View } from 'react-native'; import { WithTheme } from '../style'; import cardStyles from './style'; 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 _a = this.props, style = _a.style, styles = _a.styles, restProps = __rest(_a, ["style", "styles"]); return React.createElement( WithTheme, { styles: styles, themeStyles: cardStyles }, function (s) { return React.createElement(View, _extends({ style: [s.body, style] }, restProps)); } ); } }]); return CardBody; }(React.Component); export default CardBody; CardBody.defaultProps = { style: {} };