Update formatter and linter

This commit is contained in:
Nicolas Gallagher
2018-05-08 09:24:08 -07:00
parent 2e9071eb0e
commit f6a65210ca
3 changed files with 521 additions and 143 deletions
@@ -25,7 +25,7 @@ const Box = styled(View)`
flex-direction: ${props => (props.layout === 'column' ? 'column' : 'row')};
padding: ${props => (props.outer ? '4px' : '0')};
${props => props.fixed && 'height:6px;'} ${props =>
props.fixed && 'width:6px;'} background-color: ${props => getColor(props.color)};
props.fixed && 'width:6px;'} background-color: ${props => getColor(props.color)};
`;
export default Box;