2017-05-18 21:21:33 +03:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import Baseline from '../baseline';
|
|
|
|
import remcalc from 'remcalc';
|
|
|
|
|
|
|
|
const Label = styled.label`
|
|
|
|
font-size: ${remcalc(15)};
|
2018-01-30 18:04:03 +02:00
|
|
|
line-height: ${remcalc(18)};
|
2017-05-18 21:21:33 +03:00
|
|
|
font-style: normal;
|
|
|
|
font-stretch: normal;
|
2017-09-05 23:21:44 +03:00
|
|
|
display: block;
|
2017-05-18 21:21:33 +03:00
|
|
|
color: ${props => props.theme.secondary};
|
2017-10-04 20:27:55 +03:00
|
|
|
text-align: left;
|
2017-05-18 21:21:33 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default Baseline(Label);
|