(props)
| 1 | import { Box, Container, Stack } from "@mui/material"; |
| 2 | |
| 3 | const NavigationWrapper = (props) => { |
| 4 | const { children, sx } = props; |
| 5 | return ( |
| 6 | <Box |
| 7 | sx={{ |
| 8 | backgroundColor: "#FFEEDA80", |
| 9 | }} |
| 10 | > |
| 11 | <Container> |
| 12 | <Stack |
| 13 | direction="row" |
| 14 | sx={{ |
| 15 | width: "100%", |
| 16 | py: ["30px", "56px"], |
| 17 | justifyContent: "space-between", |
| 18 | alignItems: "center", |
| 19 | ...sx, |
| 20 | }} |
| 21 | > |
| 22 | {children} |
| 23 | </Stack> |
| 24 | </Container> |
| 25 | </Box> |
| 26 | ); |
| 27 | }; |
| 28 | |
| 29 | export default NavigationWrapper; |
nothing calls this directly
no outgoing calls
no test coverage detected