forked from npmx-dev/npmx.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppLogo.vue
More file actions
31 lines (30 loc) · 708 Bytes
/
AppLogo.vue
File metadata and controls
31 lines (30 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script setup lang="ts">
defineProps<{
class?: string
}>()
</script>
<template>
<svg
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
width="96"
height="96"
:class="class"
>
<title>{{ $t('alt_logo') }}</title>
<rect fill="var(--bg)" width="512" height="512" rx="64" />
<rect fill="currentColor" x="110" y="310" width="60" height="60" />
<text
fill="var(--accent)"
x="320"
y="370"
font-family="'Geist Mono',ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace"
font-size="420"
font-weight="500"
text-anchor="middle"
>
<tspan>/</tspan>
</text>
</svg>
</template>