|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 'use strict';
-
- function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
-
- var React = _interopDefault(require('react'));
-
- var _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;
- };
-
- var objectWithoutProperties = function (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;
- };
-
- var CardsPlayingOutlineIcon = function CardsPlayingOutlineIcon(_ref) {
- var _ref$color = _ref.color,
- color = _ref$color === undefined ? 'currentColor' : _ref$color,
- _ref$size = _ref.size,
- size = _ref$size === undefined ? 24 : _ref$size,
- children = _ref.children,
- props = objectWithoutProperties(_ref, ['color', 'size', 'children']);
-
- var className = 'mdi-icon ' + (props.className || '');
-
- return React.createElement(
- 'svg',
- _extends({}, props, { className: className, width: size, height: size, fill: color, viewBox: '0 0 24 24' }),
- React.createElement('path', { d: 'M11.19,2.25C11.97,2.26 12.71,2.73 13,3.5L18,15.45C18.09,15.71 18.14,16 18.13,16.25C18.11,17 17.65,17.74 16.9,18.05L9.53,21.1C9.27,21.22 9,21.25 8.74,21.25C7.97,21.23 7.24,20.77 6.93,20L1.97,8.05C1.55,7.04 2.04,5.87 3.06,5.45L10.42,2.4C10.67,2.31 10.93,2.25 11.19,2.25M14.67,2.25H16.12A2,2 0 0,1 18.12,4.25V10.6L14.67,2.25M20.13,3.79L21.47,4.36C22.5,4.78 22.97,5.94 22.56,6.96L20.13,12.82V3.79M11.19,4.22L3.8,7.29L8.77,19.3L16.17,16.24L11.19,4.22M8.65,8.54L11.88,10.95L11.44,14.96L8.21,12.54L8.65,8.54Z' })
- );
- };
-
- var CardsPlayingOutlineIcon$1 = React.memo ? React.memo(CardsPlayingOutlineIcon) : CardsPlayingOutlineIcon;
-
- module.exports = CardsPlayingOutlineIcon$1;
|