first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-14 22:02:57 -04:00
commit 5f95d857d4
783 changed files with 112323 additions and 0 deletions
@@ -0,0 +1,43 @@
import React from "react";
import Card from "@mui/material/Card";
import Box from "@mui/material/Box";
import Typography from "@mui/material/Typography";
const AverageSpeedOfAnswer = () => {
return (
<>
<Card
sx={{
boxShadow: "none",
borderRadius: "10px",
p: "25px 20px",
mb: "15px",
}}
>
<Box
sx={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
mb: "30px",
}}
>
<Typography as="h5" fontSize="16px" fontWeight="500">
Average Speed of Answer
</Typography>
<Typography as="h3" fontSize="28px" fontWeight="700" color="#5B5B98">
01<span style={{ fontSize: "12px" }}>m</span> : 20
<span style={{ fontSize: "12px" }}>s</span>
</Typography>
</Box>
<Box sx={{ textAlign: 'center' }}>
<img src="/images/chart3.png" alt="chart" />
</Box>
</Card>
</>
);
};
export default AverageSpeedOfAnswer;