component PricingPlanCard { props { class = "" name = "Starter" description = "" price = "₹0" period = "/month" featured = false badgeLabel = "Most popular" ctaLabel = "Choose plan" ctaHref = "#" } view {
{#if featured}
{/if}

{name}

{#if description}

{description}

{/if}
{price} {#if period} {period} {/if}
{#if featured} {ctaLabel} {:else} {ctaLabel} {/if}
} }