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

19 lines
423 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;
font-weight: bold;
display: block;
color: ${props => props.theme.secondary};
`;
export default Baseline(Label);