mirror of
https://github.com/Rakantor/personal-portfolio.git
synced 2025-12-17 19:36:32 +01:00
15 lines
381 B
TypeScript
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 } |