AddFilesPlaceholder.svelte 395 B

12345678910111213
  1. <script>
  2. import { getContext } from 'svelte';
  3. const i18n = getContext('i18n');
  4. </script>
  5. <div class=" text-center text-6xl mb-3">📄</div>
  6. <div class="text-center dark:text-white text-2xl font-semibold z-50">{$i18n.t('Add Files')}</div>
  7. <slot
  8. ><div class=" mt-2 text-center text-sm dark:text-gray-200 w-full">
  9. {$i18n.t('Drop any files here to add to the conversation')}
  10. </div>
  11. </slot>