({children})
| 52 | ]; |
| 53 | |
| 54 | function IconTile({children}) { |
| 55 | return ( |
| 56 | <Box sx={{ |
| 57 | flexShrink: 0, width: 40, height: 40, borderRadius: 2, |
| 58 | display: "flex", alignItems: "center", justifyContent: "center", |
| 59 | bgcolor: (theme) => theme.palette.surface, color: "primary.main", |
| 60 | }}> |
| 61 | {children} |
| 62 | </Box> |
| 63 | ); |
| 64 | } |
| 65 | |
| 66 | function SectionLabel({children}) { |
| 67 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected