17 lines
384 B
JavaScript
17 lines
384 B
JavaScript
|
import styled from 'styled-components';
|
||
|
import Baseline from '../baseline';
|
||
|
import typography from '../typography';
|
||
|
import remcalc from 'remcalc';
|
||
|
|
||
|
const Label = styled.label`
|
||
|
${typography.fontFamily};
|
||
|
${typography.normal};
|
||
|
|
||
|
font-size: ${remcalc(15)};
|
||
|
font-style: normal;
|
||
|
font-stretch: normal;
|
||
|
color: ${props => props.theme.secondary};
|
||
|
`;
|
||
|
|
||
|
export default Baseline(Label);
|