2024-06-19 08:39:18 +02:00
|
|
|
<template>
|
2024-06-28 02:09:05 +02:00
|
|
|
<ButtonBase class="hover:bg-white/5 text-xs max-w-full w-full h-full !p-0">
|
|
|
|
|
<Icon :icon="icon" class="!size-6" />
|
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-28 02:09:05 +02:00
|
|
|
import Icon from "~/packages/ui/components/icons/icon.vue";
|
2024-06-21 04:09:09 +02:00
|
|
|
|
2024-06-19 08:39:18 +02:00
|
|
|
defineProps<{
|
|
|
|
|
icon: string;
|
|
|
|
|
text: string;
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|