2024-08-02 18:19:39 +08:00

19 lines
454 B
JavaScript

import { defineComponent, h } from 'vue';
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"
}));
}
});