react-animated-climacons
v1.0.0
Published
Animated SVG Climacons for React (Weather Icons)
Downloads
7
Readme
react-animated-climacons
Animated SVG Climacons for React (Weather Icons)
Original SVG icons from https://github.com/noahblon/animated-climacons
Install
npm install --save react-animated-climacons
Usage
import React from 'react';
import {
OpenWeatherMapCodes,
Moon,
} from 'react-animated-climacons';
const App = () => {
// Use the OpenWeatherMapCodes to map a code to a component
const Icon = OpenWeatherMapCodes.night[801];
return (
<div>
// fill and stroke props are optional
<Moon fill="red" stroke="black" />
<Icon fill="green" stroke="black" />
</div>
);
};
License
MIT © w3cj