|
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 AccountsCheckIcon = function AccountsCheckIcon(_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: 'M22.59,7.92L23.75,9.33L19,14.08L16.25,11.08L17.41,9.92L19,11.5L22.59,7.92M6,5A3,3 0 0,1 9,8A3,3 0 0,1 6,11A3,3 0 0,1 3,8A3,3 0 0,1 6,5M11,5A3,3 0 0,1 14,8A3,3 0 0,1 11,11C10.68,11 10.37,10.95 10.08,10.85C10.65,10.04 11,9.06 11,8C11,6.94 10.65,5.95 10.08,5.14C10.37,5.05 10.68,5 11,5M6,13C8,13 12,14 12,16V18H0V16C0,14 4,13 6,13M12.62,13.16C14.63,13.5 17,14.46 17,16V18H14V16C14,14.82 13.45,13.88 12.62,13.16Z' })
- );
- };
-
- var AccountsCheckIcon$1 = React.memo ? React.memo(AccountsCheckIcon) : AccountsCheckIcon;
-
- module.exports = AccountsCheckIcon$1;
|