/** * Stub for ~icons/* imports (Unplugin Icons). * Returns a minimal Vue component that renders a . */ import { defineComponent, h } from 'vue' export default defineComponent({ name: 'IconStub', render() { return h('span', { class: 'icon-stub' }) }, })