feat(static): colorize weather icons

This commit is contained in:
2026-07-09 14:03:05 +03:00
parent 8f244455ac
commit b85e9ac5f3
39 changed files with 433 additions and 889 deletions

View File

@@ -0,0 +1,6 @@
import { WeatherIconElement } from "./weather-icon";
export const init = (iconsPath: string) => {
WeatherIconElement.iconsPath = iconsPath;
customElements.define("weather-icon", WeatherIconElement);
};