iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
17 lines (16 loc) • 434 B
JavaScript
export default {
name: 'ReduceIcon',
render: function render() {
var h = arguments[0];
return h(
"svg",
{
attrs: { xmlns: "http://www.w3.org/2000/svg", "data-name": "16px / Reduce small", viewBox: "0 0 16 16",
className: "design-iconfont" }
},
[h("rect", {
attrs: { width: "12", height: "2", rx: "1", transform: "translate(2 7)", fill: "#8a97a0" }
})]
);
}
};