ow / src /lib /components /AddFilesPlaceholder.svelte
github-actions[bot]
GitHub deploy: 513c0288696c0807127255837d116efa9d9a1000
e619430
raw
history blame
No virus
395 Bytes
<script>
import { getContext } from 'svelte';
const i18n = getContext('i18n');
</script>
<div class=" text-center text-6xl mb-3">πŸ“„</div>
<div class="text-center dark:text-white text-2xl font-semibold z-50">{$i18n.t('Add Files')}</div>
<slot
><div class=" mt-2 text-center text-sm dark:text-gray-200 w-full">
{$i18n.t('Drop any files here to add to the conversation')}
</div>
</slot>