Spaces:
Running
Running
File size: 1,347 Bytes
819bacd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
import { Typography, useTheme } from "@mui/material";
import Grid from "@mui/material/Unstable_Grid2";
export default function ContextHeader({ chunks, documents }) {
const theme = useTheme();
return (
<>
<Grid
container
border={1}
mb={2}
borderColor={theme.palette.border.default}
borderRadius={2}
padding={1.2}
sx={{
backgroundColor: theme.palette.background.default,
}}
>
<Grid
item
sm={5.5}
border={1}
borderColor={theme.palette.border.default}
borderRadius={2}
alignContent={"center"}
textAlign={"center"}
sx={{
backgroundColor: "white",
}}
>
<Typography variant="h6">
Nº chunks: <br /> {chunks}{" "}
</Typography>
</Grid>
<Grid
item
ml={1}
sm={5.5}
border={1}
borderColor={theme.palette.border.default}
borderRadius={2}
alignContent={"center"}
textAlign={"center"}
sx={{
backgroundColor: "white",
}}
>
<Typography variant="h6">
Nº Doc: <br />
{documents}
</Typography>
</Grid>
</Grid>
</>
);
}
|