AlipayOutlined.js 1.2 KB

12345678910111213141516171819202122
  1. import { createVNode as _createVNode } from "vue";
  2. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
  3. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  4. // GENERATE BY ./scripts/generate.ts
  5. // DON NOT EDIT IT MANUALLY
  6. import AlipayOutlinedSvg from "@ant-design/icons-svg/es/asn/AlipayOutlined";
  7. import AntdIcon from '../components/AntdIcon';
  8. var AlipayOutlined = function AlipayOutlined(props, context) {
  9. var p = _objectSpread({}, props, context.attrs);
  10. return _createVNode(AntdIcon, _objectSpread({}, p, {
  11. "icon": AlipayOutlinedSvg
  12. }), null);
  13. };
  14. AlipayOutlined.displayName = 'AlipayOutlined';
  15. AlipayOutlined.inheritAttrs = false;
  16. export default AlipayOutlined;