"src/lib/components/admin/Settings/Documents.svelte" did not exist on "098ba6ea4e871ed5d53d7b3dc0d372699b26d603"
AddFilesPlaceholder.svelte 395 Bytes
Newer Older
1
2
3
4
5
<script>
	import { getContext } from 'svelte';
	const i18n = getContext('i18n');
</script>

Timothy J. Baek's avatar
Timothy J. Baek committed
6
<div class="  text-center text-6xl mb-3">📄</div>
7
<div class="text-center dark:text-white text-2xl font-semibold z-50">{$i18n.t('Add Files')}</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
8

9
10
<slot
	><div class=" mt-2 text-center text-sm dark:text-gray-200 w-full">
11
		{$i18n.t('Drop any files here to add to the conversation')}
12
13
	</div>
</slot>