// ** MUI Imports import Drawer from '@mui/material/Drawer' import Button from '@mui/material/Button' import { styled } from '@mui/material/styles' import TextField from '@mui/material/TextField' import IconButton from '@mui/material/IconButton' import Typography from '@mui/material/Typography' import Box, { BoxProps } from '@mui/material/Box' import FormControl from '@mui/material/FormControl' // ** Icon Imports import Icon from 'src/@core/components/icon' // ** Custom Components Imports import CustomChip from 'src/@core/components/mui/chip' interface Props { open: boolean toggle: () => void } const Header = styled(Box)(({ theme }) => ({ display: 'flex', alignItems: 'center', padding: theme.spacing(3, 4), justifyContent: 'space-between', backgroundColor: theme.palette.background.default })) const SendInvoiceDrawer = ({ open, toggle }: Props) => { return (
Send Invoice
} />
) } export default SendInvoiceDrawer