Files
react-native-web/benchmarks/src/components/View/styled-components.js
2017-07-09 18:43:46 -07:00

20 lines
346 B
JavaScript

import styled from 'styled-components';
const View = styled.div`
align-items: stretch;
border-width: 0;
border-style: solid;
box-sizing: border-box;
display: flex;
flex-basis: auto;
flex-direction: column;
flex-shrink: 0;
margin: 0;
padding: 0;
position: relative;
min-height: 0;
min-width: 0;
`;
export default View;