// material-ui
import { Box, Card, CardContent, Grid, Typography } from '@mui/material';
// ===========================|| HOVER SOCIAL CARD ||=========================== //
const HoverSocialCard = ({
primary,
secondary,
percentage,
// iconPrimary,
color,
sx
}) => {
// const IconPrimary = iconPrimary;
// const primaryIcon = iconPrimary ? : null;
return (
{/* {percentage.toString()} % */}
{percentage && typeof percentage === 'number' ? `${percentage.toString()} %` : percentage}
{/* {primaryIcon} */}
{secondary}
{primary}
);
};
export default HoverSocialCard;