11 lines
549 B
JavaScript
11 lines
549 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const vue_1 = require("vue");
|
||
|
exports.default = (0, vue_1.defineComponent)({
|
||
|
name: 'Remove',
|
||
|
render() {
|
||
|
return ((0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512" },
|
||
|
(0, vue_1.h)("line", { x1: "400", y1: "256", x2: "112", y2: "256", style: "\n fill: none;\n stroke: currentColor;\n stroke-linecap: round;\n stroke-linejoin: round;\n stroke-width: 32px;\n " })));
|
||
|
}
|
||
|
});
|