koel/resources/assets/js/components/ui/TooltipIcon.vue

12 lines
318 B
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2022-07-15 07:23:55 +00:00
<icon :icon="faCircleQuestion" :title="title" class="help-trigger text-blue"/>
2022-04-15 14:24:30 +00:00
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-07-15 07:23:55 +00:00
import { faCircleQuestion } from '@fortawesome/free-solid-svg-icons'
2022-04-15 17:00:08 +00:00
import { toRefs } from 'vue'
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const props = defineProps<{ title: string }>()
const { title } = toRefs(props)
2022-04-15 14:24:30 +00:00
</script>