UNPKG

2.26 kBJavaScriptView Raw
1var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
2
3var _class, _temp;
4
5function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
6
7function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
8
9function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
10
11function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
12
13import React, { Component } from 'react';
14import PropTypes from 'prop-types';
15
16var Peg = (_temp = _class = function (_Component) {
17 _inherits(Peg, _Component);
18
19 function Peg(props) {
20 _classCallCheck(this, Peg);
21
22 return _possibleConstructorReturn(this, _Component.call(this, props));
23 }
24
25 Peg.prototype.render = function render() {
26 var _this2 = this;
27
28 var _props = this.props,
29 className = _props.className,
30 others = _objectWithoutProperties(_props, ['className']);
31
32 return React.createElement('i', _extends({ ref: function ref(el) {
33 _this2.$el = el;
34 }, className: 'peg' + (className ? ' ' + className : '') }, others));
35 };
36
37 return Peg;
38}(Component), _class.defaultProps = {}, _temp);
39export { Peg as default };
40Peg.propTypes = process.env.NODE_ENV !== "production" ? {
41 className: PropTypes.string
42} : {};
\No newline at end of file