12 lines
264 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: 'Switcher',
render() {
return h("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32 32"
}, h("path", {
d: "M12 8l10 8l-10 8z"
}));
}
});