Passed
Push — master ( 67133e...c59620 )
by Huu-Phat
01:48 queued 10s
created

cms/src/dashboard/components/GetStarted/SubTitle.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 12
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 9
mnd 0
bc 0
fnc 1
dl 0
loc 12
ccs 1
cts 1
cp 1
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
rs 10
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