component ProductCard { props { eyebrow = "" title = "" description = "" href = "" actionLabel = "Learn more" status = "" class = "" } view {
{#if eyebrow}{eyebrow}{/if} {#if status}{status}{/if}
{#if title}

{title}

{/if} {#if description}

{description}

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