|
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 AccountTieIcon = function AccountTieIcon(_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: 'M12,3A4,4 0 0,1 16,7A4,4 0 0,1 12,11A4,4 0 0,1 8,7A4,4 0 0,1 12,3M16,13.54C16,14.6 15.72,17.07 13.81,19.83L13,15L13.94,13.12C13.32,13.05 12.67,13 12,13C11.33,13 10.68,13.05 10.06,13.12L11,15L10.19,19.83C8.28,17.07 8,14.6 8,13.54C5.61,14.24 4,15.5 4,17V21H10L11.09,21H12.91L14,21H20V17C20,15.5 18.4,14.24 16,13.54Z' })
- );
- };
-
- var AccountTieIcon$1 = React.memo ? React.memo(AccountTieIcon) : AccountTieIcon;
-
- module.exports = AccountTieIcon$1;
|