2023-11-19 04:38:34 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import { OsmConnection } from "../../Logic/Osm/OsmConnection";
|
|
|
|
import Logout from "../../assets/svg/Logout.svelte";
|
|
|
|
import Translations from "../i18n/Translations";
|
|
|
|
import Tr from "./Tr.svelte";
|
|
|
|
|
2023-11-22 19:39:19 +01:00
|
|
|
export let osmConnection: OsmConnection;
|
2023-11-19 04:38:34 +01:00
|
|
|
</script>
|
|
|
|
|
2023-11-22 19:39:19 +01:00
|
|
|
<button on:click={() => {osmConnection.LogOut()}}>
|
|
|
|
<Logout class="w-6 h-6" />
|
|
|
|
<Tr t={Translations.t.general.logout} />
|
2023-11-19 04:38:34 +01:00
|
|
|
</button>
|