36 lines
896 B
JavaScript
36 lines
896 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _react = require('react');
|
|
|
|
var _react2 = _interopRequireDefault(_react);
|
|
|
|
var _pure = require('recompose/pure');
|
|
|
|
var _pure2 = _interopRequireDefault(_pure);
|
|
|
|
var _SvgIcon = require('material-ui/SvgIcon');
|
|
|
|
var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var SvgIconCustom = global.__MUI_SvgIcon__ || _SvgIcon2.default;
|
|
|
|
var _ref = _react2.default.createElement('path', { d: 'M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z' });
|
|
|
|
var Person = function Person(props) {
|
|
return _react2.default.createElement(
|
|
SvgIconCustom,
|
|
props,
|
|
_ref
|
|
);
|
|
};
|
|
|
|
Person = (0, _pure2.default)(Person);
|
|
Person.muiName = 'SvgIcon';
|
|
|
|
exports.default = Person; |