I get a warning on this inline style: ```tsx <View style={[ styles.safeAreaTransparent, { height: props.insetsTop ? insets.top : 0, }, // <---- eslint(react-native/no-inline-styles) ]} /> ``` Does this behaviour work as expected? If so, how should we change these? I think it should not report as a warning though ...