forked from MapComplete/MapComplete
17 lines
417 B
Svelte
17 lines
417 B
Svelte
<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"
|
|
|
|
export let osmConnection: OsmConnection;
|
|
</script>
|
|
|
|
<button
|
|
on:click={() => {
|
|
osmConnection.LogOut()
|
|
}}
|
|
>
|
|
<Logout class="h-6 w-6" />
|
|
<Tr t={Translations.t.general.logout} />
|
|
</button>
|