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

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

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 13
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 10
mnd 0
bc 0
fnc 1
dl 0
loc 13
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 Title = withStyles(theme => ({
5
  root: {
6
    fontSize: theme.fontSizes.XXL,
7
    fontWeight: 600,
8
    padding: '9px 0 4px 0',
9
    lineHeight: 1.3
10
  }
11
}))(Typography)
12
13
export default Title
14