1
0
Fork 0
mirror of synced 2024-08-24 06:21:37 +12:00
budibase/packages/standard-components/src/Container.svelte

13 lines
267 B
Svelte
Raw Normal View History

<script>
import { getContext } from "svelte"
const { styleable, transition } = getContext("sdk")
const component = getContext("component")
</script>
2021-04-02 07:19:14 +13:00
<div
in:transition={{ type: $component.transition }}
use:styleable={$component.styles}>
<slot />
</div>