import { AiOutlineAlert, AiOutlineControl, AiOutlineGateway } from 'react-icons/ai';
import { CgSmartHomeBoiler } from 'react-icons/cg';
import { FaSolarPanel } from 'react-icons/fa';
import { GiHeatHaze, GiTap } from 'react-icons/gi';
import {
MdOutlineDevices,
MdOutlinePool,
MdOutlineSensors,
MdThermostatAuto
} from 'react-icons/md';
import { TiFlowSwitch } from 'react-icons/ti';
import { VscVmConnect } from 'react-icons/vsc';
import PlaylistAddIcon from '@mui/icons-material/PlaylistAdd';
import { DeviceType } from './types';
const DeviceIcon = ({ type_id }: { type_id: DeviceType }) => {
switch (type_id) {
case DeviceType.TEMPERATURESENSOR:
case DeviceType.ANALOGSENSOR:
return ;
case DeviceType.BOILER:
case DeviceType.HEATSOURCE:
return ;
case DeviceType.THERMOSTAT:
return ;
case DeviceType.MIXER:
return ;
case DeviceType.SOLAR:
return ;
case DeviceType.HEATPUMP:
return ;
case DeviceType.GATEWAY:
return ;
case DeviceType.SWITCH:
return ;
case DeviceType.CONTROLLER:
case DeviceType.CONNECT:
return ;
case DeviceType.ALERT:
return ;
case DeviceType.EXTENSION:
return ;
case DeviceType.WATER:
return ;
case DeviceType.POOL:
return ;
case DeviceType.CUSTOM:
return (
);
default:
return null;
}
};
export default DeviceIcon;