component ChannelCard { props { title = "" description = "" href = "" icon = "" actionLabel = "" class = "" } view {
{#if icon} {/if}
{#if title}

{title}

{/if} {#if description}

{description}

{/if} {#if href} {actionLabel || "Explore " + title} {/if}
} }