Add custom iconset and SVGs

This commit is contained in:
2023-04-18 11:18:09 +02:00
parent e66c98d760
commit 355496f070
4 changed files with 39 additions and 0 deletions

15
iconsets/brands.ts Normal file
View File

@@ -0,0 +1,15 @@
import { h } from 'vue'
import type { IconSet, IconProps } from 'vuetify'
import apple from '~/components/svg/apple.vue'
import heroku from '~/components/svg/heroku.vue'
const customSvgNameToComponent: any = {
apple,
heroku,
}
const brands: IconSet = {
component: (props: IconProps) => h(customSvgNameToComponent[props.icon], { class: 'v-icon__svg' }),
}
export { brands }