• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

alkem-io / client-web / #10069

28 Jan 2025 09:21AM UTC coverage: 5.728%. First build
#10069

Pull #7446

travis-ci

Pull Request #7446: Remove `@mui/styles` legacy package

190 of 10976 branches covered (1.73%)

Branch coverage included in aggregate %.

0 of 50 new or added lines in 17 files covered. (0.0%)

1522 of 18913 relevant lines covered (8.05%)

0.18 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/domain/shared/components/Section/SectionHeader.tsx
1
import { Box, Typography } from '@mui/material';
2
import { FC, PropsWithChildren, ReactNode } from 'react';
3

4
interface SectionHeaderProps extends PropsWithChildren {
5
  text: ReactNode;
6
}
7

NEW
8
const SectionHeader: FC<SectionHeaderProps> = ({ text, children }) => {
×
9
  return (
×
10
    <Box
11
      display="flex"
12
      alignItems="start"
13
      flexWrap={{ xs: 'wrap', sm: 'wrap', md: 'nowrap' }}
14
      gap={2}
15
      justifyContent="space-between"
16
    >
17
      <Box display="flex" alignItems="center" flexGrow={1} flexShrink={1} flexBasis={{ xl: 0 }}>
18
        <Typography variant="h4" fontWeight={600} sx={{ wordBreak: 'break-word' }}>
19
          {text}
20
        </Typography>
21
      </Box>
22
      {children}
23
    </Box>
24
  );
25
};
26

27
export default SectionHeader;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc