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

29 lines
655 B
JavaScript

import { defineComponent, h } from 'vue';
export default defineComponent({
name: 'Photo',
render() {
return h("svg", {
viewBox: "0 0 24 24",
version: "1.1",
xmlns: "http://www.w3.org/2000/svg"
}, h("g", {
fill: "none",
stroke: "currentColor",
"stroke-width": "2",
"stroke-linecap": "round",
"stroke-linejoin": "round"
}, h("path", {
d: "M15 8h.01"
}), h("rect", {
x: "4",
y: "4",
width: "16",
height: "16",
rx: "3"
}), h("path", {
d: "M4 15l4-4a3 5 0 0 1 3 0l5 5"
}), h("path", {
d: "M14 14l1-1a3 5 0 0 1 3 0l2 2"
})));
}
});