// ** Next Import import Link from 'next/link' // ** MUI Imports import Card from '@mui/material/Card' import Button from '@mui/material/Button' import CardContent from '@mui/material/CardContent' // ** Icon Imports import Icon from 'src/@core/components/icon' interface Props { id: string | undefined toggleAddPaymentDrawer: () => void toggleSendInvoiceDrawer: () => void } const PreviewActions = ({ id, toggleSendInvoiceDrawer, toggleAddPaymentDrawer }: Props) => { return ( ) } export default PreviewActions