8 lines
231 B
React
Raw Normal View History

2022-08-24 10:44:35 +03:00
import mapIcon from "utils/condition-map";
export default function Icon({ condition, timeOfDay }) {
const Icon = mapIcon(condition, timeOfDay);
2022-08-25 11:13:31 +03:00
return <Icon className="w-10 h-10 text-theme-800 dark:text-theme-200"></Icon>;
2022-08-24 10:44:35 +03:00
}