Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 8 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 0% |
Changes | 0 |
1 | import styled from 'styled-components/macro' |
||
2 | |||
3 | const Role = styled.h5` |
||
4 | margin-top: 3px; |
||
5 | font-style: italic; |
||
6 | color: ${props => props.theme.colors.grey}; |
||
7 | ` |
||
8 | export default Role |
||
9 |