import { FC } from 'react'; import s from './PaymentWidget.module.css'; import { ChevronRight, CreditCard, Check } from '@components/icons'; interface ComponentProps { onClick?: () => any; isValid?: boolean; } const PaymentWidget: FC = ({ onClick, isValid }) => { /* Shipping Address Only available with checkout set to true - This means that the provider does offer checkout functionality. */ return (
Add Payment Method {/* VISA #### #### #### 2345 */}
{isValid ? : }
); }; export default PaymentWidget;