jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
17 lines (14 loc) • 554 B
JavaScript
import styled from 'styled-components';
const FormItem = styled.div `
display: flex;
flex-direction: column;
margin-bottom: ${props => props.theme.formItem.marginBottom};
align-items: flex-start;
`;
const FormLabel = styled.label `
margin-bottom: ${props => props.theme.formItem.label.marginBottom};
text-transform: ${props => props.theme.formItem.label.textTransform};
letter-spacing: ${props => props.theme.formItem.label.letterSpacing};
font-size: ${props => props.theme.formItem.label.fontSize};
`;
export { FormItem, FormLabel };