terra-consumer-icon
Version:
terra-consumer-icon
37 lines (25 loc) • 1.92 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
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; }; /* eslint-disable */
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _IconBase = require('terra-icon/lib/IconBase');
var _IconBase2 = _interopRequireDefault(_IconBase);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var SvgIcon = function SvgIcon(customProps) {
var attributes = _extends({}, customProps);
return _react2.default.createElement(
_IconBase2.default,
attributes,
_react2.default.createElement('path', { 'data-color': 'color-2', fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M30 36h16v10H30z' }),
_react2.default.createElement('path', { 'data-color': 'color-2', fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M34 36v-6c0-2.2 1.8-4 4-4s4 1.8 4 4v6' }),
_react2.default.createElement('path', { fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M22 26c-5.523 0-10-6.477-10-12v-2c0-5.523 4.477-10 10-10s10 4.477 10 10v2c0 5.523-4.477 12-10 12z' }),
_react2.default.createElement('path', { fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M24.001 31.037A54.547 54.547 0 0 0 22 31c-6.288 0-11.477 1.098-14.993 2.144A6.998 6.998 0 0 0 2 39.856V44h21' })
);
};
SvgIcon.displayName = "IconOutlineUserLock";
SvgIcon.defaultProps = { "viewBox": "0 0 48 48", "xmlns": "http://www.w3.org/2000/svg" };
exports.default = SvgIcon;
/* eslint-enable */