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

{title}

{/if} {#if description}

{description}

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