Linted code

This commit is contained in:
2024-06-21 00:33:07 +02:00
parent a99f3a4396
commit 2dcde6b0d8
12 changed files with 60 additions and 38 deletions

View File

@@ -9,7 +9,7 @@ defineProps({
required: true
},
icon: {
type: String,
type: String
},
blanked: {
type: Boolean,
@@ -24,7 +24,11 @@ defineProps({
:target="blanked ? '_blank' : '_self'"
class="sofia border-b border-gray-200 hover:border-black duration-300 dark:border-neutral-800 dark:hover:border-white flex gap-1 items-center pb-.5"
>
<Icon v-if="icon" :name="icon" size="20"/>
<Icon
v-if="icon"
:name="icon"
size="20"
/>
<span class="font-bold text-md text-black dark:text-white">{{ label }}</span>
</NuxtLink>
</template>
</template>