feature: add InputLabel

This commit is contained in:
George Lima 2018-12-19 18:40:24 -03:00
parent 6051113bea
commit 243a645feb
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// @flow
import styled from 'styled-components';
import { TextComponent } from './text';
export const InputLabelComponent = styled(TextComponent)`
margin: 20px 0 5px 0;
font-weight: ${props => props.theme.fontWeight.bold};
`;