16 lines
473 B
JavaScript
Raw Normal View History

2024-08-02 18:19:39 +08:00
import { defineComponent, h } from 'vue';
2024-01-29 09:26:07 +08:00
export default defineComponent({
name: 'Remove',
render() {
return h("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 512 512"
}, 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 "
}));
}
});