open-webui/src/lib/components/chat/Messages/Error.svelte

16 lines
393 B
Svelte
Raw Normal View History

2024-08-18 18:59:59 +00:00
<script lang="ts">
2024-09-29 22:37:31 +00:00
import Info from '$lib/components/icons/Info.svelte';
2024-08-18 18:59:59 +00:00
export let content = '';
</script>
2024-09-29 23:01:39 +00:00
<div class="flex my-2 gap-2.5 border px-4 py-3 border-red-800 bg-red-800/30 rounded-lg">
2024-09-29 22:37:31 +00:00
<div class=" self-start mt-0.5">
<Info className="size-5" />
</div>
2024-08-18 18:59:59 +00:00
2024-09-29 22:37:31 +00:00
<div class=" self-center text-sm">
2024-09-29 23:01:39 +00:00
{typeof content === 'string' ? content : JSON.stringify(content)}
2024-08-18 18:59:59 +00:00
</div>
</div>