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