feat: add zine-direction shared components

This commit is contained in:
Jennie Robinson Faber 2026-04-02 21:16:00 +01:00
parent dbb3fbbc1b
commit 8b3daadadd
10 changed files with 594 additions and 176 deletions

View file

@ -0,0 +1,10 @@
<template>
<span class="badge" :class="circle">{{ label || circle }}</span>
</template>
<script setup>
defineProps({
circle: { type: String, required: true },
label: { type: String, default: '' },
})
</script>