Latest updates from IceHrmPro
This commit is contained in:
51
web/node_modules/antd/es/card/Meta.js
generated
vendored
Normal file
51
web/node_modules/antd/es/card/Meta.js
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
||||
|
||||
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 * as React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { ConfigConsumer } from '../config-provider';
|
||||
|
||||
var Meta = function Meta(props) {
|
||||
return /*#__PURE__*/React.createElement(ConfigConsumer, null, function (_ref) {
|
||||
var getPrefixCls = _ref.getPrefixCls;
|
||||
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
className = props.className,
|
||||
avatar = props.avatar,
|
||||
title = props.title,
|
||||
description = props.description,
|
||||
others = __rest(props, ["prefixCls", "className", "avatar", "title", "description"]);
|
||||
|
||||
var prefixCls = getPrefixCls('card', customizePrefixCls);
|
||||
var classString = classNames("".concat(prefixCls, "-meta"), className);
|
||||
var avatarDom = avatar ? /*#__PURE__*/React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-meta-avatar")
|
||||
}, avatar) : null;
|
||||
var titleDom = title ? /*#__PURE__*/React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-meta-title")
|
||||
}, title) : null;
|
||||
var descriptionDom = description ? /*#__PURE__*/React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-meta-description")
|
||||
}, description) : null;
|
||||
var MetaDetail = titleDom || descriptionDom ? /*#__PURE__*/React.createElement("div", {
|
||||
className: "".concat(prefixCls, "-meta-detail")
|
||||
}, titleDom, descriptionDom) : null;
|
||||
return /*#__PURE__*/React.createElement("div", _extends({}, others, {
|
||||
className: classString
|
||||
}), avatarDom, MetaDetail);
|
||||
});
|
||||
};
|
||||
|
||||
export default Meta;
|
||||
Reference in New Issue
Block a user