1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-09 18:40:12 +02:00
copilot/packages/ui-toolkit/src/label/index.js

17 lines
384 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.fontFamily};
${typography.normal};
font-size: ${remcalc(15)};
font-style: normal;
font-stretch: normal;
color: ${props => props.theme.secondary};
`;
export default Baseline(Label);