You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
486 B

  1. <script lang="ts">
  2. import type { IconName } from "../external/icons";
  3. import Icon from "./Icon.svelte";
  4. export let icon: IconName = "moon";
  5. export let text: string = "All good!";
  6. </script>
  7. <div class="empty-list">
  8. <div class="icon">
  9. <Icon name={icon} />
  10. </div>
  11. <div class="text">
  12. {text}
  13. </div>
  14. </div>
  15. <style>
  16. div.empty-list {
  17. font-size: 2em;
  18. text-align: center;
  19. color: #555;
  20. padding: 2em 0;
  21. }
  22. div.icon {
  23. font-size: 3em;
  24. }
  25. </style>