import { Grid } from "@mui/material"; import { ProductCardProps } from "../../interfaces/ProductCard"; import { Card } from "../Card"; import { IconCardStyle, ProductCardStyle, TitleContainer } from "./ProductCard.style"; import React from "react"; import { IconButton } from "../IconButton"; import GradeIcon from '@mui/icons-material/Grade' import { Icons } from '../Icons' import { IconScale, IconType } from "../../types"; export const ProductCard: React.FC = ({ // product = 'analytics' color, icon, onClick, hasBorder = true, disabled = false, title, description, favorite, }) => { /* const colors: { [key: string]: string } = { primaryDark: '#B74608', primaryLight: '#FCF1E3', secondaryDark: '#6788B8', secondaryLight: '#EEF7FB' } */ return ( onClick && onClick()} > {favorite && ( )}

{title}

{description}

) }