A react component that renders animated pokemon sprites
Install the npm module in your app directory.
npm i react-poke-sprites
OR
yarn add react-poke-sprites
- With a given pokémon name (case insensitive)
import PokeSprite from 'react-poke-sprites'
<PokeSprite pokemon={'Lugia'} className="pokemon-class" /> // passes this className to the rendered sprite
- With a given pokémon id (make sure the ID is valid) You may refer this link to get id's of all pokémons.
import PokeSprite from 'react-poke-sprites'
<PokeSprite pokemon={249} className="pokemon-class" /> // passes this className to the rendered sprite
-
pokemon - Pass the name or the ID of the pokemon.
-
className - Pass in a class name to modify as you see fit.
- A corresponding Vue.js component is here.
- Uses pokemon-gif to retrieve links from Pokestadium.
- There's already a component for this here but it wasn't working in my case so I decided to create my own.
Found a bug, please create an issue
© Anshuman Verma