forked from MapComplete/MapComplete
Looking at https://github.com/dcastil/tailwind-merge/blob/v1.13.1/docs/when-and-how-to-use-it.md#how-to-use-it I placed the "winning" class at the end for twMerge
17 lines
581 B
Svelte
17 lines
581 B
Svelte
<script lang="ts">
|
|
import { OsmConnection } from "../../Logic/Osm/OsmConnection"
|
|
import Translations from "../i18n/Translations.js"
|
|
import Tr from "./Tr.svelte"
|
|
import ToSvelte from "./ToSvelte.svelte"
|
|
import Svg from "../../Svg"
|
|
|
|
export let osmConnection: OsmConnection
|
|
export let clss: string | undefined = undefined
|
|
</script>
|
|
|
|
<button class={clss} on:click={() => osmConnection.AttemptLogin()}>
|
|
<ToSvelte construct={Svg.login_svg().SetClass("w-12 m-1")} />
|
|
<slot name="message">
|
|
<Tr t={Translations.t.general.loginWithOpenStreetMap} />
|
|
</slot>
|
|
</button>
|