11 lines
406 B
Vue
11 lines
406 B
Vue
<script setup lang="ts">
|
|
import AppLogoIcon from '@/components/AppLogoIcon.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex aspect-square size-8 items-center justify-center">
|
|
<AppLogoIcon />
|
|
</div>
|
|
<span class="font-bold text-zinc-600 dark:text-zinc-400 text-sm whitespace-nowrap overflow-hidden group-data-[collapsible=icon]:opacity-0 transition-[opacity]">Caramal CRM</span>
|
|
</template>
|