forked from
npmx.dev/npmx.dev
[READ-ONLY]
a fast, modern browser for the npm registry
1<script setup lang="ts">
2defineProps<{
3 class?: string
4}>()
5</script>
6
7<template>
8 <svg
9 aria-hidden="true"
10 xmlns="http://www.w3.org/2000/svg"
11 viewBox="0 0 512 512"
12 width="96"
13 height="96"
14 :class="class"
15 >
16 <title>{{ $t('alt_logo') }}</title>
17 <rect fill="var(--bg)" width="512" height="512" rx="64" />
18 <rect fill="currentColor" x="110" y="310" width="60" height="60" />
19 <text
20 fill="var(--accent)"
21 x="320"
22 y="370"
23 font-family="'Geist Mono',ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace"
24 font-size="420"
25 font-weight="500"
26 text-anchor="middle"
27 style="user-select: none"
28 >
29 <tspan>/</tspan>
30 </text>
31 </svg>
32</template>