1.0.4 • Published 3 years ago

react-native-animated-weather-icons v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

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

PropertyTypeDefaultDescription
weatherNamestring'weather-sunny'Specifies icon to show

Example

const App: () => Node = () => {
  return (
    <View>
      <AnimatedWeatherIcon 
        weatherName="weather-sunny"
      />
    </View>
  )
}