19 lines
454 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: 'Add',
render() {
return h("svg", {
width: "512",
height: "512",
viewBox: "0 0 512 512",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, h("path", {
d: "M256 112V400M400 256H112",
stroke: "currentColor",
"stroke-width": "32",
"stroke-linecap": "round",
"stroke-linejoin": "round"
}));
}
});