import React from 'react' import { Divider, Icon, Row, Text } from '../../atoms' import { getGlobalStyle } from '../../../helpers' import styles from './PaymentAlert.module.css' interface PaymentAlertProps { text?: string } const PaymentAlertToMemo: React.FC = ({ text = '' }) => { return (
{text}
) } export const PaymentAlert = React.memo(PaymentAlertToMemo)