import { FC } from 'react' import { Trash } from '@components/icons' import s from './WishlistCard.module.css' interface Props { className?: string children?: any data?: ProductData } interface ProductData { name: string images: any prices: any path: string } const WishlistCard: FC = ({ className, data }) => { return (

Jacket

Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake.

$ 50.00
) } export default WishlistCard