2024-06-19 08:39:18 +02:00
|
|
|
<template>
|
2024-06-21 04:09:09 +02:00
|
|
|
<ButtonBase
|
2024-06-27 15:03:03 +02:00
|
|
|
class="hover:bg-white/5 text-xs max-w-full w-full h-full !p-0">
|
2024-06-19 08:39:18 +02:00
|
|
|
<iconify-icon :icon="icon" class="size-6" width="none" />
|
2024-06-21 04:09:09 +02:00
|
|
|
</ButtonBase>
|
2024-06-19 08:39:18 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-06-27 15:03:03 +02:00
|
|
|
import ButtonBase from "~/packages/ui/components/buttons/button.vue";
|
2024-06-21 04:09:09 +02:00
|
|
|
|
2024-06-19 08:39:18 +02:00
|
|
|
defineProps<{
|
|
|
|
|
icon: string;
|
|
|
|
|
text: string;
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|