Files
Luminary/web/src/components/BrandIcon.vue
T
renjue a831012c48
CI / docker (push) Failing after 1m35s
Add Gitea CI, align Docker for multi-arch, and drop legacy YAML config.
Introduce Gitea Actions workflow and CI-aligned Dockerfile; remove file-based
config in favor of SQLite settings; refresh branding and tighten gitignore.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 21:10:38 +08:00

21 lines
705 B
Vue

<template>
<svg
:width="size"
:height="size"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<circle cx="12" cy="12" r="2" fill="currentColor" />
<path d="M12 4v4.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
<path d="M12 15.5V20" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
<path d="M4 12h4.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
<path d="M15.5 12H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
</svg>
</template>
<script setup lang="ts">
withDefaults(defineProps<{ size?: number | string }>(), { size: 20 })
</script>