UNPKG

vantui-edit

Version:

一套适用于Taro3及React的vantui组件库

50 lines (46 loc) 2.45 kB
import _defineProperty from "@babel/runtime/helpers/defineProperty"; import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; var _excluded = ["type", "size", "mark", "plain", "round", "color", "textColor", "closeable", "children", "onClose", "style", "className"]; function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } import { View } from '@tarojs/components'; import * as utils from '../wxs/utils'; import { Icon } from '../icon'; import * as computed from './wxs'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; export function Tag(props) { var _props$type = props.type, type = _props$type === void 0 ? 'default' : _props$type, size = props.size, mark = props.mark, plain = props.plain, round = props.round, color = props.color, textColor = props.textColor, closeable = props.closeable, children = props.children, onClose = props.onClose, style = props.style, className = props.className, others = _objectWithoutProperties(props, _excluded); return /*#__PURE__*/_jsxs(View, _objectSpread(_objectSpread({ className: ' ' + utils.bem('tag', [type, size, { mark: mark, plain: plain, round: round }]) + " ".concat(className || ''), style: utils.style([computed.rootStyle({ plain: plain, color: color, textColor: textColor }), style]) }, others), {}, { children: [children, closeable && /*#__PURE__*/_jsx(Icon, { name: "cross", className: "van-tag__close", onClick: onClose })] })); } export default Tag;