import React from 'react'; import { StatusBar as StatusBarRN } from 'react-native'; import PropTypes from 'prop-types'; import { themes } from '../constants/colors'; const StatusBar = React.memo(({ theme, barStyle, backgroundColor }) => { if (!barStyle) { barStyle = 'light-content'; if (theme === 'light') { barStyle = 'dark-content'; } } return ; }); StatusBar.propTypes = { theme: PropTypes.string, barStyle: PropTypes.string, backgroundColor: PropTypes.string }; export default StatusBar;