| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 12 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | import { withStyles } from '@material-ui/core/styles' |
||
| 2 | import Typography from '@material-ui/core/Typography' |
||
| 3 | |||
| 4 | 5 | const SubTitle = withStyles(theme => ({ |
|
| 5 | root: { |
||
| 6 | fontSize: theme.fonts.L, |
||
| 7 | color: theme.colors.secondaryText, |
||
| 8 | marginBottom: `${theme.spaces.medium}px` |
||
| 9 | } |
||
| 10 | }))(Typography) |
||
| 11 | |||
| 12 | export default SubTitle |
||
| 13 |