import React from 'react'; import { Image, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; const styles = StyleSheet.create({ style: { marginRight: 7, marginTop: 3, tintColor: '#9EA2A8' } }); const RoomTypeIcon = React.memo(({ type, size, style }) => { if (!type) { return null; } if (type === 'c') { return ; } return ; }); RoomTypeIcon.propTypes = { type: PropTypes.string, size: PropTypes.number, style: PropTypes.object }; RoomTypeIcon.defaultProps = { size: 10 }; export default RoomTypeIcon;