import type { App } from 'vue' import { Icon } from './Icon' import JusticeIcon from './Icon/JusticeIcon.vue' export const setupGlobCom = (app: App): void => { app.component('Icon', Icon) app.component('JusticeIcon', JusticeIcon) }