11 lines
512 B
JavaScript
11 lines
512 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const vue_1 = require("vue");
|
||
|
exports.default = (0, vue_1.defineComponent)({
|
||
|
name: 'Add',
|
||
|
render() {
|
||
|
return ((0, vue_1.h)("svg", { width: "512", height: "512", viewBox: "0 0 512 512", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
||
|
(0, vue_1.h)("path", { d: "M256 112V400M400 256H112", stroke: "currentColor", "stroke-width": "32", "stroke-linecap": "round", "stroke-linejoin": "round" })));
|
||
|
}
|
||
|
});
|