浏览代码

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

Classic298 1 周之前
父节点
当前提交
67b3929954
共有 1 个文件被更改,包括 0 次插入9 次删除
  1. 0 9
      src/lib/components/common/Warning.svelte

+ 0 - 9
src/lib/components/common/Warning.svelte

@@ -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>