component Map { props { size: string = "default" color: string = "primary" title: string = "Map" description: string = "" items: unknown[] = [] variant: string = "default" class: string = "" } view {
{#if title || description}
{#if title}

{title}

{/if} {#if description}

{description}

{/if}
{/if}
{#if items.length > 0} {#each items as item, index} {/each} {/if}
} }