component StyledIcon { props { size: string = "default" color: string = "primary" title: string = "Styled Icon" description: string = "" items: unknown[] = [] variant: string = "default" class: string = "" } view {
{#if title}{title}{/if} {#if description}

{description}

{/if} {#if items}
{#each items as item}{item.label}{/each}
{/if}
} }