({children})
| 42 | ]; |
| 43 | |
| 44 | function IconTile({children}) { |
| 45 | return ( |
| 46 | <Box sx={{ |
| 47 | flexShrink: 0, width: 40, height: 40, borderRadius: 2, |
| 48 | display: "flex", alignItems: "center", justifyContent: "center", |
| 49 | bgcolor: (theme) => theme.palette.surface, color: "primary.main", |
| 50 | }}> |
| 51 | {children} |
| 52 | </Box> |
| 53 | ); |
| 54 | } |
| 55 | |
| 56 | function SectionLabel({children}) { |
| 57 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected