2023-03-24 19:21:15 +01:00
|
|
|
<script lang="ts">
|
2023-06-14 20:39:36 +02:00
|
|
|
import { createEventDispatcher } from "svelte"
|
2023-06-15 05:38:52 +02:00
|
|
|
import { twJoin } from "tailwind-merge"
|
2023-03-24 19:21:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A round button with an icon and possible a small text, which hovers above the map
|
|
|
|
*/
|
2023-06-14 20:39:36 +02:00
|
|
|
const dispatch = createEventDispatcher()
|
2023-05-30 02:52:22 +02:00
|
|
|
export let cls = ""
|
2023-03-24 19:21:15 +01:00
|
|
|
</script>
|
|
|
|
|
2023-06-14 20:39:36 +02:00
|
|
|
<button
|
|
|
|
on:click={(e) => dispatch("click", e)}
|
2023-06-15 16:12:46 +02:00
|
|
|
class={twJoin("pointer-events-auto m-0.5 h-fit w-fit rounded-full p-0.5 sm:p-1 md:m-1", cls)}
|
|
|
|
>
|
2023-06-14 20:39:36 +02:00
|
|
|
<slot />
|
2023-05-11 02:17:41 +02:00
|
|
|
</button>
|