import React from 'react' import styles from './styles.module.css' import { Column, Divider, Icon, Image, Paragraph, RippleButton, Row, Text } from '../../atoms' import { getGlobalStyle } from '../../../utils' interface Card { name: string icon: string } interface PlanProps { paymentMethodCards?: Card[] onRedirectTo?: () => void storeImage?: string } export const Plan: React.FC = ({ paymentMethodCards = [], storeImage = '', onRedirectTo = () => { } }) => { return (
Tu Periodo ha terminado Continua vendiendo con {process.env.BUSINESS_TITLE} en un click Con {process.env.BUSINESS_TITLE} puedes seguir vendiendo en un click, sin importar si tienes un restaurante, una tienda o un negocio de servicios. ve al checkout realiza el pago y sigue vendiendo. {paymentMethodCards?.map((card: Card) => { return (
) })}
Ir al checkout
) }