The shorthand property ``` flex: 0 1; ``` Should be parsed to ``` flex-grow: 0; flex-shrink: 1; ``` reproduction on the node repl: ```js require('css-to-react-native').default([['flex', '0 1']]) ```