feat : lister les receptions terminees

This commit is contained in:
2026-02-05 08:11:05 +01:00
parent a69556c554
commit f5b61f4c7e
3 changed files with 64 additions and 11 deletions

View File

@@ -5,7 +5,7 @@
<div class="w-[324px] h-[228px] border border-black rounded-md p-6 flex flex-col justify-between">
<div class="flex justify-between">
<div class="rounded-full w-[80px] h-[80px] bg-neutral-400 flex justify-center items-center">
<Icon :name="nomIcone" style="color: black" size="44" />
<Icon :name="iconName" style="color: black" size="44" />
</div>
<div>
<Icon name="mdi:plus" style="color: black" size="44" />
@@ -23,7 +23,7 @@
<script setup lang="ts">
const props = defineProps<{
link: string
nomIcone: string
iconName: string
label: string
}>()
</script>