this.openSubscription(index)}
@keydown=${(e: KeyboardEvent) => {
if (e.code === '13') this.openSubscription(index);
}}
plan-color="${plan.color}"
>
${plan.name}
${this.currency
? new Intl.NumberFormat(this.currency.locale, {
style: 'currency',
currency: this.currency.code,
}).format(parseFloat(plan.price))
: ''}
/ mo
${plan.features.map(
(feature: any) =>
html`
-
${unsafeHTML(feature)}
`
)}