1
0
Fork 0
mirror of synced 2024-09-21 20:01:32 +12:00
budibase/packages/builder/src/components/start/LogoutButton.svelte

7 lines
183 B
Svelte
Raw Normal View History

2021-04-14 00:56:28 +12:00
<script>
2021-04-29 02:53:21 +12:00
import { Button } from "@budibase/bbui"
2021-04-14 00:56:28 +12:00
import { auth } from "stores/backend"
</script>
2021-04-29 02:53:21 +12:00
<Button primary quiet text icon="LogOut" on:click={auth.logout}>Log Out</Button>