@arco-design/web-react
Version:
Arco Design React UI Library.
20 lines (19 loc) • 674 B
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
import React, { forwardRef } from 'react';
import Base from './base';
function TextComponent(props, ref) {
return React.createElement(Base, __assign({}, props, { componentType: "Text", ref: ref }));
}
var Text = forwardRef(TextComponent);
Text.displayName = 'Text';
export default Text;