This repository has been archived on 2022-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
Alley-HSBC-Frontend/src/components/contacts/contacts-components/EmptyBody.tsx
2022-03-30 04:02:48 -07:00

30 lines
692 B
TypeScript

import { Box, Typography } from "@mui/material";
import React from "react";
import PermContactCalendarIcon from "@mui/icons-material/PermContactCalendar";
const EmptyBody: React.FC = () => {
return (
<Box
sx={{
display: "flex",
flexDirection: "column",
width: "100%",
height: "100%",
justifyContent: "center",
alignItems: "center",
}}
>
<Box>
<PermContactCalendarIcon color="secondary" sx={{ fontSize: 100 }} />
</Box>
<Box>
<Typography>
View contact info by clicking a contact in the left panel
</Typography>
</Box>
</Box>
);
};
export default EmptyBody;