1
0
Fork 0
mirror of synced 2024-09-18 10:20:11 +12:00
budibase/packages/standard-components/src/Container.svelte

13 lines
268 B
Svelte

<script>
import { getContext } from "svelte"
const { styleable, transition } = getContext("sdk")
const component = getContext("component")
</script>
<div
in:transition={{ type: $component.transition }}
use:styleable={$component.styles}
>
<slot />
</div>