A comprehensive collection of weather icons available as SVG sprites and web fonts. Perfect for weather apps, dashboards, and modern web applications.
npm install weather-iconic
Available as SVG sprites and webfonts
Customizable color schemes with CSS variables
Optimized for performance with minimal file sizes
Simple CSS classes or SVG sprite usage
Works across all modern browsers with fallback support
<!-- Include the stylesheet via CDN -->
<link rel="stylesheet" href="https://unpkg.com/weather-iconic/dist/weather-iconic.css">
<!-- Or if installed via npm -->
<link rel="stylesheet" href="node_modules/weather-iconic/dist/weather-iconic.css">
<!-- Use icons with CSS classes -->
<span class="weather weather-sun"></span>
<span class="weather weather-cloud-rain"></span>
<!-- SVG sprite method -->
<svg width="32" height="32">
<use xlink:href="/path/to/sprites.svg#weather-sun"></use>
</svg>
<svg width="32" height="32">
<use xlink:href="/path/to/sprites.svg#weather-cloud-rain"></use>
</svg>