feat: add atmospheric cloudy weather theme

This commit is contained in:
zv
2026-06-01 19:25:31 +02:00
parent 6346a3cda9
commit 4dcc13dcbf
4 changed files with 22 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
import { CloudRain, CloudSun, MoonStar, Snowflake, ThermometerSun, Wind } from "lucide-react";
import { Cloud, CloudRain, CloudSun, MoonStar, Snowflake, ThermometerSun, Wind } from "lucide-react";
import type { WeatherMood } from "@/types/imgw";
export function WeatherIcon({ mood, className = "" }: { mood: WeatherMood; className?: string }) {
const Icon = {
warm: ThermometerSun,
cloudy: Cloud,
rain: CloudRain,
wind: Wind,
cold: Snowflake,