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

T-Shirt

$50
) } export default ProductCard