Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 10 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
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 |