import classNames from 'classnames' import IconHeart from 'src/components/icons/IconHeart' import React, { memo } from 'react' import s from './ItemWishList.module.scss' interface Props { isActive?: boolean, onChange?: () => void } const ItemWishList = memo(({isActive=false, onChange}:Props) => { return(