component FeatureTabs { props { eyebrow = "" title = "" description = "" href = "" actionLabel = "Learn more" image = "" alt = "" class = "" } view {
{#if image} {alt} {/if}
{#if eyebrow}

{eyebrow}

{/if} {#if title}

{title}

{/if} {#if description}

{description}

{/if}
{#if href} {actionLabel} {/if}
} }