Passed
Push — master ( f602d8...7b3414 )
by Huu-Phat
02:55 queued 11s
created

modules/core/components/error/layout/Description.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 10
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 4
mnd 0
bc 0
fnc 1
dl 0
loc 10
ccs 1
cts 1
cp 1
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
rs 10
1
import styled from 'styled-components/macro'
2
3
const Description = styled.p`
4 4
  color: ${props => props.theme.colors.colorDark};
5
  font-size: 14px;
6
  font-weight: 400;
7
  margin: 10px;
8
`
9
10
export default Description
11