Files
Starlight_Lancher/apps/app-frontend/src/components/ui/AxolotlLogo.vue
Ap_Tx d8a07c69c1
Some checks failed
Axolotl desktop CI / guardrails (push) Has been cancelled
Axolotl desktop CI / desktop (macos-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (ubuntu-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (windows-latest) (push) Has been cancelled
Axolotl desktop CI / website (push) Has been cancelled
Repository checks / typos (push) Has been cancelled
Repository checks / tombi (push) Has been cancelled
Rust checks / shear (push) Has been cancelled
Sync source to CNB / Sync Git ref (push) Has been cancelled
change:美西螈图标替换为下界之星,不过仍有素材需要绘画
2026-09-11 21:15:32 +08:00

15 lines
457 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/netherstar.png'
defineProps<{
iconOnly?: boolean
}>()
</script>