Year Progress - 2026

27 / 365 days completed (7%)

Callouts are a great way to highlight important information in your documentation.

Basic Callouts

Collapsible Callouts

Usage

Import and use the Callout component:

<script>
  import Callout from '$lib/components/Callout.svelte';
</script>

<Callout type="info" title="My Title">
  Your content here...
</Callout>

Available Props

PropTypeDefaultDescription
typestring'info'Callout style variant
titlestringCustom title text
collapsiblebooleantrueEnable expand/collapse
collapsedbooleantrueStart collapsed

Available Types

info · tip · warning · example