react-native-animated-weather-icons
Version:
Animated Weather Icons for React Native
36 lines (29 loc) • 889 B
Markdown
# react-native-animated-weather-icons
Animated SVG Weather Icons for React Native
### Forked from [react-native-animated-weather-icons](https://github.com/stan-sack/react-native-animated-weather-icons) by stan-sack
## Requirements
* [react-native-svg](https://github.com/react-native-svg/react-native-svg)
## 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
````javascript
const App: () => Node = () => {
return (
<View>
<AnimatedWeatherIcon
weatherName="weather-sunny"
/>
</View>
)
}
````