react-native-animated-weather-icons
v1.0.4
Published
Animated Weather Icons for React Native
Downloads
7
Maintainers
Readme
react-native-animated-weather-icons
Animated SVG Weather Icons for React Native
Forked from react-native-animated-weather-icons by stan-sack
Requirements
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>
)
}