import { ErrorIcon, LogIcon, LogInfoIcon, SucessIcon, WarningIcon } from "../icons/LogIcons"; import { LogType } from "../ui/log/LoggerContext"; export const GetLogIcon = (type: LogType): JSX.Element => { switch (type) { case "info": return ; case "log": return ; case "error": return ; case "warning": return ; case "success": return ; default: return ; } };