zepio/app/components/input-label.js

11 lines
269 B
JavaScript
Raw Normal View History

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