Error.svelte 533 B

1234567891011121314151617181920212223242526
  1. <script lang="ts">
  2. export let content = '';
  3. </script>
  4. <div
  5. class="flex mt-2 mb-4 space-x-2 border px-4 py-3 border-red-800 bg-red-800/30 font-medium rounded-lg"
  6. >
  7. <svg
  8. xmlns="http://www.w3.org/2000/svg"
  9. fill="none"
  10. viewBox="0 0 24 24"
  11. stroke-width="1.5"
  12. stroke="currentColor"
  13. class="w-5 h-5 self-center"
  14. >
  15. <path
  16. stroke-linecap="round"
  17. stroke-linejoin="round"
  18. d="M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z"
  19. />
  20. </svg>
  21. <div class=" self-center">
  22. {content}
  23. </div>
  24. </div>