mirror of
https://github.com/open-webui/open-webui
synced 2025-01-10 12:57:33 +00:00
12 lines
331 B
Svelte
12 lines
331 B
Svelte
<script lang="ts">
|
|
import { settings } from '$lib/stores';
|
|
import ProfileImageBase from './ProfileImageBase.svelte';
|
|
|
|
export let className = 'size-8';
|
|
export let src = '';
|
|
</script>
|
|
|
|
<div class={`flex-shrink-0 ${($settings?.chatDirection ?? 'LTR') === 'LTR' ? 'mr-3' : 'ml-3'}`}>
|
|
<ProfileImageBase {src} {className} />
|
|
</div>
|