Files
personal-portfolio/iconsets/brands.ts
2023-04-18 11:18:09 +02:00

15 lines
381 B
TypeScript

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 }