Add raindrops to lightning-rainy state SVG (#26298)

This commit is contained in:
karwosts 2025-07-26 22:54:25 -07:00 committed by GitHub
parent 27dfa514e7
commit 9ad887942e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,7 +146,12 @@ const cloudyStates = new Set<string>([
"lightning-rainy",
]);
const rainStates = new Set<string>(["hail", "rainy", "pouring"]);
const rainStates = new Set<string>([
"hail",
"rainy",
"pouring",
"lightning-rainy",
]);
const windyStates = new Set<string>(["windy", "windy-variant"]);