1
0
mirror of https://github.com/karl0ss/homepage.git synced 2025-05-21 13:26:20 +01:00

8 lines
244 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 }) {
2022-09-07 16:53:24 +03:00
const IconComponent = mapIcon(condition, timeOfDay);
2022-08-24 10:44:35 +03:00
2022-09-07 16:53:24 +03:00
return <IconComponent className="w-10 h-10 text-theme-800 dark:text-theme-200" />;
2022-08-24 10:44:35 +03:00
}