joyent-portal/packages/ui-toolkit/src/label/index.js
Sérgio Ramos 8295bd6882 chore: initial lerna setup
this shall be a progressive process
2017-05-25 10:56:50 +01:00

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);