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

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

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 11
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 8
mnd 0
bc 0
fnc 1
dl 0
loc 11
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 ItemTitle = withStyles(theme => ({
5
  root: {
6
    fontSize: theme.fontSizes.XL,
7
    fontWeight: 600
8
  }
9
}))(Typography)
10
11
export default ItemTitle
12