|
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 AccountMultipleOutlineIcon = function AccountMultipleOutlineIcon(_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: 'M9,13.75C6.66,13.75 2,14.92 2,17.25V19H16V17.25C16,14.92 11.34,13.75 9,13.75M4.34,17C5.18,16.42 7.21,15.75 9,15.75C10.79,15.75 12.82,16.42 13.66,17M9,12A3.5,3.5 0 0,0 12.5,8.5A3.5,3.5 0 0,0 9,5A3.5,3.5 0 0,0 5.5,8.5A3.5,3.5 0 0,0 9,12M9,7A1.5,1.5 0 0,1 10.5,8.5A1.5,1.5 0 0,1 9,10A1.5,1.5 0 0,1 7.5,8.5A1.5,1.5 0 0,1 9,7M16.04,13.81C17.2,14.65 18,15.77 18,17.25V19H22V17.25C22,15.23 18.5,14.08 16.04,13.81M15,12A3.5,3.5 0 0,0 18.5,8.5A3.5,3.5 0 0,0 15,5C14.46,5 13.96,5.13 13.5,5.35C14.13,6.24 14.5,7.33 14.5,8.5C14.5,9.67 14.13,10.76 13.5,11.65C13.96,11.87 14.46,12 15,12Z' })
- );
- };
-
- var AccountMultipleOutlineIcon$1 = React.memo ? React.memo(AccountMultipleOutlineIcon) : AccountMultipleOutlineIcon;
-
- module.exports = AccountMultipleOutlineIcon$1;
|