react-native-animated-weather-icons
Animated SVG Weather Icons for React Native
react-native-animated-weather-icons by stan-sack
Forked fromRequirements
Installation
yarn add react-native-weather-icons
Usage
import AnimatedWeatherIcon from 'react-native-animated-weather-icons';
Props
Property | Type | Default | Description |
---|---|---|---|
weatherName | string | 'weather-sunny' | Specifies icon to show |
Example
const App: () => Node = () => {
return (
<View>
<AnimatedWeatherIcon
weatherName="weather-sunny"
/>
</View>
)
}