import Avatar from '@mui/material/Avatar'; import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import CardHeader from '@mui/material/CardHeader'; import IconButton from '@mui/material/IconButton'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import { Iconify } from 'src/components/iconify'; import type { IOrderCustomer } from 'src/types/party-order'; // ---------------------------------------------------------------------- type Props = { customer?: IOrderCustomer; }; export function OrderDetailsCustomer({ customer }: Props) { return ( <> } /> {customer?.name} {customer?.email}
IP address: {customer?.ipAddress}
); }