Files
hoppscotch/packages/hoppscotch-app/components/smart/Icon.vue
2021-11-17 19:59:32 +05:30

16 lines
278 B
Vue

<template>
<component :is="src" />
</template>
<script setup lang="ts">
import { computed } from "@nuxtjs/composition-api"
const props = defineProps<{
name: String
}>()
const src = computed(() => {
return require(`~/assets/icons/${props.name}.svg?inline`)
})
</script>