Hoppa till innehåll

Panel

Panel

Props

// Panel heading
export let heading = 'Inställningar';
// Marks heading with asterisk to indicate that all fields are required inside
export let required = false;
// Show and hide compoment without re-rendering.
export let show = true;

Slots

Default slot for panel body.

Example

<script>
import { Panel } from '@soleil-se/config-svelte';
</script>
<Panel heading="Inställningar">
<!-- Panel content -->
</Panel>