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