import PropTypes from 'prop-types'; // @mui import Chip from '@mui/material/Chip'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; // @project import MainCard from '@/components/MainCard'; /*************************** CARD - OVERVIEW ***************************/ export default function OverviewCard({ title, value, chip, compare, cardProps }) { const chipDefaultProps = { color: 'success', variant: 'text', size: 'small' }; return ( {title} {value} {compare} ); } OverviewCard.propTypes = { title: PropTypes.string, value: PropTypes.string, chip: PropTypes.any, compare: PropTypes.string, cardProps: PropTypes.any };