import { Box, Typography } from "@mui/material"; interface Props { name: string; image: any; } export default function PaymentMethodCard({ name, image }: Props) { return ( payment method {name} ); }