mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
11 lines
324 B
Vue
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>
|