mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
10 lines
203 B
Vue
10 lines
203 B
Vue
|
<template>
|
||
|
<span class="!opacity-50">
|
||
|
<Icon :icon="faSquareUpRight" />
|
||
|
</span>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { faSquareUpRight } from '@fortawesome/free-solid-svg-icons'
|
||
|
</script>
|