Ensure button group component has default props

This commit is contained in:
Andrew Kingston 2023-11-09 12:38:40 +00:00
parent 8d1bcfd8b5
commit 103e933df8
1 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@
import Block from "../Block.svelte"
export let buttons = []
export let direction
export let hAlign
export let vAlign
export let direction = "row"
export let hAlign = "left"
export let vAlign = "top"
export let gap = "S"
</script>