zepio/app/components/input-label.js

10 lines
235 B
JavaScript
Raw Normal View History

2018-12-19 13:40:24 -08:00
// @flow
import styled from 'styled-components';
import { TextComponent } from './text';
export const InputLabelComponent = styled(TextComponent)`
margin: 20px 0 8.5px 0;
2018-12-19 13:40:24 -08:00
font-weight: ${props => props.theme.fontWeight.bold};
`;