2024-06-19 08:39:18 +02:00
|
|
|
<template>
|
2024-06-21 04:09:09 +02:00
|
|
|
<ButtonBase
|
2024-06-19 08:39:18 +02:00
|
|
|
class="hover:bg-white/5 text-xs max-w-full w-full gap-1 h-full !px-0 flex flex-col items-center justify-center">
|
|
|
|
|
<iconify-icon :icon="icon" class="size-6" width="none" />
|
|
|
|
|
<span class="text-xs hidden md:inline">{{ text }}</span>
|
2024-06-21 04:09:09 +02:00
|
|
|
</ButtonBase>
|
2024-06-19 08:39:18 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-06-21 04:09:09 +02:00
|
|
|
import ButtonBase from "./button-base.vue";
|
|
|
|
|
|
2024-06-19 08:39:18 +02:00
|
|
|
defineProps<{
|
|
|
|
|
icon: string;
|
|
|
|
|
text: string;
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|