ExampleComponent.svelte 297 B

12345678910111213141516171819202122
  1. <script lang="typescript">
  2. export let title: string;
  3. export let paragraph: string;
  4. </script>
  5. <svelte:options immutable />
  6. <style>
  7. h1 {
  8. color: #4299E1;
  9. font-size: 1.875rem;
  10. font-weight: 200;
  11. }
  12. p {
  13. color: #4A5568;
  14. margin-top: 1rem;
  15. }
  16. </style>
  17. <h1>{title}</h1>
  18. <p>{paragraph}</p>