// @mui import Typography from '@mui/material/Typography'; import Paper, { PaperProps } from '@mui/material/Paper'; import Stack, { StackProps } from '@mui/material/Stack'; // types import { Customer } from 'mvpmasters-shared'; // components import Label from 'src/components/label'; import { createFullAddress } from 'src/utils/create-full-address'; // ---------------------------------------------------------------------- type Props = PaperProps & StackProps & { action?: React.ReactNode; company: Customer; }; export default function AddressItem({ company, action, sx, ...other }: Props) { const { name, address, phoneNumber } = company; return ( {name} {createFullAddress(address)} {phoneNumber} {action && action} ); }