zent
Version:
一套前端设计语言和基于React的实现
27 lines (26 loc) • 1.03 kB
JavaScript
import { __assign, __extends } from "tslib";
import { jsx as _jsx } from "react/jsx-runtime";
import { PureComponent } from 'react';
import cx from 'classnames';
var TextRow = (function (_super) {
__extends(TextRow, _super);
function TextRow() {
return _super !== null && _super.apply(this, arguments) || this;
}
TextRow.prototype.render = function () {
var _a = this.props, className = _a.className, lineSpacing = _a.lineSpacing, animate = _a.animate, style = _a.style;
var defaultStyles = {
marginTop: lineSpacing,
};
var classes = cx('zent-placeholder-text-row', 'zent-placeholder-shape', {
'zent-placeholder-shape--animate': animate,
}, className);
return _jsx("div", { className: classes, style: __assign(__assign({}, defaultStyles), style), "data-zv": '10.0.17' }, void 0);
};
TextRow.defaultProps = {
lineSpacing: '0.7em',
animate: true,
};
return TextRow;
}(PureComponent));
export default TextRow;