Panel
Props
// Panel headingexport let heading = 'Inställningar';// Marks heading with asterisk to indicate that all fields are required insideexport 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>