the default value for the `flex` shorthand (`0 1 auto`) fails to be parsed by `css-to-react-native` when passed through `styled-components` repro case: ```js import { styled } from 'styled-components/native' const MyComponent = styled.View` flex: 0 1 auto; ` ```