UNPKG

@malga-checkout/core

Version:
38 lines (37 loc) 1.52 kB
import { t } from '@malga-checkout/i18n'; import { Component, Host, h } from '@stencil/core'; import settings from '../../../../stores/settings'; export class MalgaPaymentsNuPayContent { render() { return (h(Host, { class: { 'malga-payments-nupay-content__container': true } }, h("h4", null, t('paymentMethods.nupay.content.title', settings.locale)), h("h5", null, t('paymentMethods.nupay.content.subtitle', settings.locale)), h("p", null, t('paymentMethods.nupay.content.description', settings.locale)), h("ul", null, h("li", null, "\u2022 ", t('paymentMethods.nupay.stepper.first', settings.locale)), h("li", null, "\u2022 ", t('paymentMethods.nupay.stepper.second', settings.locale)), h("li", null, "\u2022 ", t('paymentMethods.nupay.stepper.third', settings.locale)), h("li", null, "\u2022 ", t('paymentMethods.nupay.stepper.fourth', settings.locale))), h("small", null, t('paymentMethods.nupay.details.first', settings.locale), ' ', h("strong", null, t('paymentMethods.nupay.details.second', settings.locale)), ' ', t('paymentMethods.nupay.details.third', settings.locale)))); } static get is() { return "malga-payments-nupay-content"; } static get originalStyleUrls() { return { "$": ["malga-payments-nupay-content.scss"] }; } static get styleUrls() { return { "$": ["malga-payments-nupay-content.css"] }; } }