component FeatureCard { props { icon = "" title = "Feature" description = "" href = "" actionLabel = "Learn more" actionIcon = "" badge = "" badgeColor = "primary" size = "default" color = "primary" variant = "default" hover = "lift" align = "left" disabled = false class = "" } view {
{#if icon} {/if}
{#if badge} {/if}

{title}

{#if description}

{description}

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