joyent-portal/packages/ui-toolkit/src/label/index.js

18 lines
394 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
import Baseline from '../baseline';
import typography from '../typography';
import remcalc from 'remcalc';
const Label = styled.label`
${typography.normal};
font-size: ${remcalc(15)};
font-style: normal;
font-stretch: normal;
display: block;
color: ${props => props.theme.secondary};
2017-10-04 20:27:55 +03:00
text-align: left;
`;
export default Baseline(Label);