A react gif picker component using giphy API
npm install react-giphy-component

NPM -npm i react-giphy-component --save
Yarn -yarn add react-giphy-component
``jsx
import Picker from 'react-giphy-component'
import ReactDOM from 'react-dom'
import React, { Component, PropTypes } from 'react'
class TestComponent extends Component {
log (gif) {
console.log(gif)
}
render () {
return (
ReactDOM.render(
document.getElementById('root')
)
`
#### onSelected (required)
Handler returns the GIF selected from the picker. On select it returns a Gif object in the format specified for an image from Giphy's search API giphy sample-response-search
#### visibletrue
Opacity to show or hide the picker. Defaults to .
#### modaltrue
If you want the emoji picker to be a modal. will set the wrapper as position: absolute.false
Or , which is the default will be position: static.
#### apiKey
GIPHY API key, you can get one from https://developers.giphy.com/
#### loader
A custom loader react component that will be showing while performing API calls
#### placeholder
Input plave holder text
#### imagePlaceholderColor
Placeholder background color while rendering GIF images
#### className
CSS class name for GIPHY wrapper
#### inputClassName
CSS class name for seach keyword input
#### gifClassName
CSS class name for GIF image
#### children
Child react components
`sh``
npm install
npm run build
npm test
npm start