source: src/sections/company/company-item.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.4 KB
Line 
1// @mui
2import Typography from '@mui/material/Typography';
3import Paper, { PaperProps } from '@mui/material/Paper';
4import Stack, { StackProps } from '@mui/material/Stack';
5// types
6import { Customer } from 'mvpmasters-shared';
7// components
8import Label from 'src/components/label';
9import { createFullAddress } from 'src/utils/create-full-address';
10
11// ----------------------------------------------------------------------
12
13type Props = PaperProps &
14 StackProps & {
15 action?: React.ReactNode;
16 company: Customer;
17 };
18
19export default function AddressItem({ company, action, sx, ...other }: Props) {
20 const { name, address, phoneNumber } = company;
21
22 return (
23 <Stack
24 component={Paper}
25 spacing={2}
26 alignItems={{ md: 'flex-end' }}
27 direction={{ xs: 'column', md: 'row' }}
28 sx={{
29 position: 'relative',
30 ...sx,
31 }}
32 {...other}
33 >
34 <Stack flexGrow={1} spacing={1}>
35 <Stack direction="row" alignItems="center">
36 <Typography variant="subtitle2">{name}</Typography>
37
38 <Label color="info" sx={{ ml: 1 }}>
39 Default
40 </Label>
41 </Stack>
42
43 <Typography variant="body2" sx={{ color: 'text.secondary' }}>
44 {createFullAddress(address)}
45 </Typography>
46
47 <Typography variant="body2" sx={{ color: 'text.secondary' }}>
48 {phoneNumber}
49 </Typography>
50 </Stack>
51
52 {action && action}
53 </Stack>
54 );
55}
Note: See TracBrowser for help on using the repository browser.