import React from "react"; interface ProductCardProps { image: string; discount: string; price: string; oldPrice: string; title: string; brand: string; size?: "normal" | "small"; } const ProductCard: React.FC = ({ image, discount, price, oldPrice, title, brand, size = "normal" }) => (
{discount}
{price}
{oldPrice}
{title}
{brand}
Купить
); export default ProductCard;