Add basic README

release
Etienne Lemay 2016-05-31 20:53:01 -04:00
parent 030251f2dc
commit c9b7c1c301
1 changed files with 26 additions and 0 deletions

26
README.md Normal file
View File

@ -0,0 +1,26 @@
<h1 align="center">⛏ EmojiPicker ⛏</h1>
```jsx
import {Picker} from 'emoji-picker'
<Picker
emojiSize={24}
perLine={9}
sheetURL='images/sheet-apple-64.png'
onClick={(emoji) => console.log(emoji)}
/>
/*
{
colons: ':smiley:',
emoticons: [
'=)',
'=-)'
],
id: 'smiley',
name: 'Smiling Face with Open Mouth',
native: '😃',
skin: 1
}
*/
```