@wener/console
Version:
Base console UI toolkit
42 lines (41 loc) • 1.77 kB
JavaScript
function _define_property(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;
}
function _object_spread(target) {
for(var i = 1; i < arguments.length; i++){
var source = arguments[i] != null ? 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) {
_define_property(target, key, source[key]);
});
}
return target;
}
import * as React from 'react';
import { memo } from 'react';
var SvgWechatBrandIcon = function(props) {
return /*#__PURE__*/ React.createElement("svg", _object_spread({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1025 1024"
}, props), /*#__PURE__*/ React.createElement("path", {
fill: "#51C332",
d: "M1024 695c0-150-143-272-319-272-177 0-320 122-320 272s143 271 320 271c55 0 107-12 153-33l126 54-15-140c35-43 55-96 55-152m-427-74a45 45 0 1 1 0-91 45 45 0 0 1 0 91m215 0a45 45 0 1 1 0-91 45 45 0 0 1 0 91M705 387c49 0 96 9 139 25l1-17c0-198-189-358-423-358C189 37 0 197 0 395c0 75 27 144 73 201L53 782l167-72c41 19 87 32 135 39q-6-27-6-54c0-170 160-307 356-307zM565 178a60 60 0 1 1 0 120 60 60 0 0 1 0-120M280 298a60 60 0 1 1 0-120 60 60 0 0 1 0 120"
}));
};
var Memo = /*#__PURE__*/ memo(SvgWechatBrandIcon);
export default Memo;