1
0
Fork 0
mirror of synced 2024-09-10 06:26:02 +12:00
budibase/packages/materialdesign-components/src/Dialog/DialogActions.svelte

14 lines
302 B
Svelte
Raw Normal View History

<script>
import { onMount } from "svelte"
export let _bb
let dialogActions
onMount(() => {
_bb.setContext("BBMD:button:context", "mdc-dialog__button")
})
$: dialogActions && _bb.attachChildren(dialogActions)
</script>
<footer bind:this={dialogActions} class="mdc-dialog__actions" />