Files
Starlight_Lancher/apps/app-frontend/src/components/ui/AxolotlLogo.vue
Ap_Tx 6da9264ef0 change:-axolotl改为starlight
-移除了多人游戏的侧边栏残留
2026-09-11 20:58:19 +08:00

15 lines
454 B
Vue

<template>
<div aria-label="Starlight" class="flex h-full items-center gap-2 font-extrabold text-contrast">
<img aria-hidden="true" class="aspect-square h-full object-contain" :src="axolotlVisual" />
<span v-if="!iconOnly" class="hidden text-sm tracking-wide xl:inline">Starlight</span>
</div>
</template>
<script setup lang="ts">
import axolotlVisual from '@modrinth/assets/branding/axolotl.png'
defineProps<{
iconOnly?: boolean
}>()
</script>