Intégration fonctionnalites V1

This commit is contained in:
bastien
2026-07-04 22:30:18 +02:00
parent 55a558b536
commit 10ee859602
54 changed files with 4802 additions and 1018 deletions
@@ -0,0 +1,21 @@
<script setup>
defineProps({
label: {
type: String,
required: true,
},
colorClass: {
type: String,
default: 'bg-slate-100 text-slate-700 ring-slate-500/20',
},
});
</script>
<template>
<span
class="inline-flex rounded-full px-2.5 py-0.5 text-xs font-medium ring-1 ring-inset"
:class="colorClass"
>
{{ label }}
</span>
</template>