2023-03-24 19:21:15 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A round button with an icon and possible a small text, which hovers above the map
|
|
|
|
*/
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
2023-05-18 23:42:03 +02:00
|
|
|
<button on:click={e => dispatch("click", e)} class="rounded-full h-fit w-fit m-0.5 md:m-1 p-0.5 sm:p-1 pointer-events-auto">
|
2023-04-24 02:27:55 +02:00
|
|
|
<slot/>
|
2023-05-11 02:17:41 +02:00
|
|
|
</button>
|