mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
20 lines
414 B
Svelte
20 lines
414 B
Svelte
<script>
|
|
import { WEBUI_BASE_URL } from '$lib/constants';
|
|
import { shortCodesToEmojis } from '$lib/stores';
|
|
|
|
export let shortCode;
|
|
export let className = 'size-4';
|
|
</script>
|
|
|
|
{#if $shortCodesToEmojis[shortCode]}
|
|
<img
|
|
src="{WEBUI_BASE_URL}/assets/emojis/{$shortCodesToEmojis[shortCode].toLowerCase()}.svg"
|
|
alt={shortCode}
|
|
class={className}
|
|
loading="lazy"
|
|
/>
|
|
{:else}
|
|
<div>
|
|
{shortCode}
|
|
</div>
|
|
{/if}
|