2023-06-07 22:45:42 +02:00
|
|
|
<script lang="ts">
|
2023-06-14 20:39:36 +02:00
|
|
|
import { Square3Stack3dIcon } from "@babeard/svelte-heroicons/solid"
|
|
|
|
import MapControlButton from "../Base/MapControlButton.svelte"
|
|
|
|
import ThemeViewState from "../../Models/ThemeViewState"
|
2023-06-07 22:45:42 +02:00
|
|
|
|
2023-06-14 20:39:36 +02:00
|
|
|
export let state: ThemeViewState
|
2023-06-07 22:45:42 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<MapControlButton on:click={() => state.guistate.backgroundLayerSelectionIsOpened.setData(true)}>
|
2023-06-14 20:39:36 +02:00
|
|
|
<Square3Stack3dIcon class="w-6 h-6" />
|
2023-06-07 22:45:42 +02:00
|
|
|
</MapControlButton>
|