Delete src/lib/components/common/Warning.svelte

This commit is contained in:
Classic298
2025-09-28 21:27:31 +02:00
committed by GitHub
parent ad9cae32dc
commit 67b3929954

View File

@@ -1,9 +0,0 @@
<script lang="ts">
import ExclamationTriangle from '$lib/components/icons/ExclamationTriangle.svelte';
export let text = '';
</script>
<div class="flex items-center text-xs text-yellow-600 dark:text-yellow-500">
<ExclamationTriangle className="w-4 h-4 mr-1.5" />
<p>{text}</p>
</div>