koel/resources/assets/js/components/ui/TooltipIcon.vue
2024-07-06 17:44:57 +02:00

11 lines
324 B
Vue

<template>
<Icon :icon="faCircleQuestion" :title="title" class="help-trigger text-k-primary" />
</template>
<script lang="ts" setup>
import { faCircleQuestion } from '@fortawesome/free-solid-svg-icons'
import { toRefs } from 'vue'
const props = defineProps<{ title: string }>()
const { title } = toRefs(props)
</script>