16 lines
465 B
Svelte
16 lines
465 B
Svelte
<script lang="ts">
|
|||
|
|
/**
|
||
|
|
* Badge « à vérifier » — règle anti-hallucination du PRD : tout champ null
|
||
|
|
* est signalé, jamais masqué. Ne repose pas sur la couleur seule (picto + texte).
|
||
|
|
*/
|
||
|
|
import { fr } from '$lib/i18n/fr';
|
||
|
|
import Icon from './Icon.svelte';
|
||
|
|
|
||
|
|
let { texte = null }: { texte?: string | null } = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<span class="tag">
|
||
|
|
<Icon nom="avertissement" taille={14} />
|
||
|
|
{#if texte}{texte}{:else}{fr.badge.a_verifier}{/if}
|
||
|
|
</span>
|