iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
60 lines (59 loc) • 1.61 kB
JavaScript
export default {
render: function render() {
var h = arguments[0];
return h(
"div",
{ "class": "iep-business-icon" },
[h(
"svg",
{
attrs: { xmlns: "http://www.w3.org/2000/svg", width: "60", height: "34.452", viewBox: "0 0 60 34.452" }
},
[h("defs", [h(
"linearGradient",
{
attrs: {
id: "linear-gradient",
x1: "0.5",
x2: "0.5",
y2: "1",
gradientUnits: "objectBoundingBox"
}
},
[h("stop", {
attrs: { offset: "0", "stop-color": "#00ebff", "stop-opacity": "0" }
}), h("stop", {
attrs: { offset: "1", "stop-color": "#00ebff" }
})]
)]), h(
"g",
{
attrs: { id: "beijing", transform: "translate(0 -12.416)" }
},
[h("rect", {
attrs: {
id: "\u77E9\u5F62_7543",
"data-name": "\u77E9\u5F62 7543",
width: "60",
height: "29.923",
transform: "translate(0 12.416)",
opacity: "0.297",
fill: "url(#linear-gradient)"
}
}), h("ellipse", {
attrs: {
id: "\u692D\u5706_1408",
"data-name": "\u692D\u5706 1408",
cx: "30",
cy: "4.529",
rx: "30",
ry: "4.529",
transform: "translate(0 37.811)",
fill: "#00ebff"
}
})]
)]
)]
);
}
};