Skip to content

Collapsible

  • Collapsible component
import { Collapsible } from '@viamrobotics/prime-core';

Collapsible

<div class="w-full">
<Collapsible>
{#snippet title()}
Section 1 Title
{/snippet}
{#snippet subtitle()}
Optional subtitle for section 1
{/snippet}
{#snippet content()}
<p>This is the content for the first collapsible section.</p>
<p>It can include various HTML elements.</p>
{/snippet}
</Collapsible>
</div>