navigation-area.svelte 305 B

123456789
  1. <script lang="ts">
  2. </script>
  3. <!-- svelte-ignore a11y-no-static-element-interactions -->
  4. <div class="group flex h-full place-items-center" on:click on:keydown>
  5. <button class="mx-4 rounded-full p-3 text-gray-500 transition group-hover:bg-gray-500 group-hover:text-white">
  6. <slot />
  7. </button>
  8. </div>