import cn from "classnames"; import s from "./ProductCard.module.css"; import React, { FunctionComponent } from "react"; import { Heart } from "@components/icon"; interface Props { className?: string; children?: any; } const ProductCard: FunctionComponent = ({ className }) => { const rootClassName = cn(s.root, className); return (

T-Shirt

$50
); }; export default ProductCard;