react-ionicons
Version:
A React SVG ionicon component
90 lines (75 loc) • 3.1 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
var _SvgContainer = require('./SvgContainer');
var _SvgContainer2 = _interopRequireDefault(_SvgContainer);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var DiceOutline = function DiceOutline(props) {
return _react2.default.createElement(
_SvgContainer2.default,
{
height: props.height,
width: props.width,
color: props.color,
onClick: props.onClick,
rotate: props.rotate ? 1 : 0,
shake: props.shake ? 1 : 0,
beat: props.beat ? 1 : 0,
className: props.className
},
_react2.default.createElement(
'svg',
{ style: props.style, className: props.cssClasses, xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 512 512' },
props.title ? _react2.default.createElement(
'title',
null,
props.title
) : '',
_react2.default.createElement('path', { fill: 'none', stroke: 'currentColor', strokeLinecap: 'round', strokeLinejoin: 'round', strokeWidth: '32', d: 'M448 341.37V170.61A32 32 0 00432.11 143l-152-88.46a47.94 47.94 0 00-48.24 0L79.89 143A32 32 0 0064 170.61v170.76A32 32 0 0079.89 369l152 88.46a48 48 0 0048.24 0l152-88.46A32 32 0 00448 341.37z' }),
_react2.default.createElement('path', { fill: 'none', stroke: 'currentColor', strokeLinecap: 'round', strokeLinejoin: 'round', strokeWidth: '32', d: 'M69 153.99l187 110 187-110M256 463.99v-200' }),
_react2.default.createElement('ellipse', { cx: '256', cy: '152', rx: '24', ry: '16' }),
_react2.default.createElement('ellipse', { cx: '208', cy: '296', rx: '16', ry: '24' }),
_react2.default.createElement('ellipse', { cx: '112', cy: '328', rx: '16', ry: '24' }),
_react2.default.createElement('ellipse', { cx: '304', cy: '296', rx: '16', ry: '24' }),
_react2.default.createElement('ellipse', { cx: '400', cy: '240', rx: '16', ry: '24' }),
_react2.default.createElement('ellipse', { cx: '304', cy: '384', rx: '16', ry: '24' }),
_react2.default.createElement('ellipse', { cx: '400', cy: '328', rx: '16', ry: '24' })
)
);
};
DiceOutline.defaultProps = {
// style
style: {},
color: '#000000',
height: '22px',
width: '22px',
cssClasses: '',
title: '',
// animation
shake: false,
beat: false,
rotate: false
};
DiceOutline.propTypes = {
// style
style: _propTypes2.default.object,
color: _propTypes2.default.string,
height: _propTypes2.default.string,
width: _propTypes2.default.string,
cssClasses: _propTypes2.default.string,
title: _propTypes2.default.string,
// animation
shake: _propTypes2.default.bool,
beat: _propTypes2.default.bool,
rotate: _propTypes2.default.bool,
// functions
onClick: _propTypes2.default.func
};
exports.default = DiceOutline;
module.exports = exports['default'];
//# sourceMappingURL=DiceOutline.js.map