frontend/components/buttons/mobile-navbar-button.vue
2024-06-18 20:39:18 -10:00

14 lines
402 B
Vue

<template>
<ButtonsBase
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>
</ButtonsBase>
</template>
<script lang="ts" setup>
defineProps<{
icon: string;
text: string;
}>();
</script>