frontend/components/buttons/button-mobile-navbar.vue
2024-06-27 14:09:05 -10:00

15 lines
389 B
Vue

<template>
<ButtonBase class="hover:bg-white/5 text-xs max-w-full w-full h-full !p-0">
<Icon :icon="icon" class="!size-6" />
</ButtonBase>
</template>
<script lang="ts" setup>
import ButtonBase from "~/packages/ui/components/buttons/button.vue";
import Icon from "~/packages/ui/components/icons/icon.vue";
defineProps<{
icon: string;
text: string;
}>();
</script>