import React from 'react';
import { Image, StyleSheet } from 'react-native';
import PropTypes from 'prop-types';
const styles = StyleSheet.create({
style: {
marginRight: 7,
marginTop: 3
}
});
const RoomTypeIcon = ({ 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;