import { Link } from 'react-router-dom'; // material-ui import { useTheme } from '@mui/material/styles'; import { Button, Card, CardContent, Grid, Typography } from '@mui/material'; // project imports import { GenericCardProps } from 'types'; // assets import ArrowRightAltRoundedIcon from '@mui/icons-material/ArrowRightAltRounded'; // ==============================|| BILL CARD ||============================== // export interface BillCardProps extends GenericCardProps { link: string; bg: string; } const BillCard = ({ primary, secondary, link, color, bg }: BillCardProps) => { const theme = useTheme(); return ( {primary} {secondary} ); }; export default BillCard;