[Misc] switching to new repo for org files

This commit is contained in:
2023-09-18 18:45:14 +02:00
parent 566861ee28
commit 4e7e98c28b
176 changed files with 15713 additions and 18925 deletions

View File

@@ -0,0 +1,19 @@
<template>
<img :alt="alt" :src="src" />
<figcaption><slot></slot></figcaption>
</template>
<script setup lang="ts">
const props = defineProps<{
src: string;
alt?: string;
}>();
</script>
<style>
figcaption {
text-align: center;
margin-top: 1rem;
margin-bottom: 1rem;
}
</style>