advplyr.audiobookshelf/client/components/widgets/ExplicitIndicator.vue

18 lines
305 B
Vue
Raw Normal View History

2023-02-22 12:48:12 +00:00
<template>
<ui-tooltip :text="$strings.LabelExplicit" direction="top">
<span class="material-symbols fill text-sm ml-1 !block">explicit</span>
</ui-tooltip>
2023-02-22 12:48:12 +00:00
</template>
<script>
export default {
props: {},
2023-02-22 12:48:12 +00:00
data() {
return {}
},
computed: {},
methods: {},
mounted() {}
}
</script>