Add custom emojis to docs/

release
Etienne Lemay 2017-11-09 00:28:09 -08:00
parent 07ea17488e
commit 9a8a16226f
2 changed files with 3 additions and 14 deletions

View File

@ -1882,7 +1882,8 @@ var Example = function (_React$Component) {
native: true, native: true,
set: 'apple', set: 'apple',
emoji: 'point_up', emoji: 'point_up',
title: 'Pick your emoji…' title: 'Pick your emoji…',
custom: CUSTOM_EMOJIS
}; };
return _this; return _this;
} }
@ -1958,19 +1959,6 @@ var Example = function (_React$Component) {
__WEBPACK_IMPORTED_MODULE_7_react_dom___default.a.render(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(Example, null), document.querySelector('div')); __WEBPACK_IMPORTED_MODULE_7_react_dom___default.a.render(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(Example, null), document.querySelector('div'));
// <Picker
// emojiSize={this.state.emojiSize}
// perLine={this.state.perLine}
// skin={this.state.skin}
// native={this.state.native}
// set={this.state.set}
// custom={CUSTOM_EMOJIS}
// autoFocus={this.state.autoFocus}
// include={this.state.include}
// exclude={this.state.exclude}
// onClick={console.log}
// />
/***/ }), /***/ }),
/* 38 */ /* 38 */
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {

View File

@ -26,6 +26,7 @@ class Example extends React.Component {
set: 'apple', set: 'apple',
emoji: 'point_up', emoji: 'point_up',
title: 'Pick your emoji…', title: 'Pick your emoji…',
custom: CUSTOM_EMOJIS,
} }
} }