terra-consumer-icon
Version:
terra-consumer-icon
39 lines (27 loc) • 2.24 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-cap': 'butt', fill: 'none', stroke: '#444', strokeWidth: '2', strokeMiterlimit: '10', d: 'M31.627 23.696l-4.69 1.805' }),
_react2.default.createElement('path', { 'data-cap': 'butt', fill: 'none', stroke: '#444', strokeWidth: '2', strokeMiterlimit: '10', d: 'M33.019 28.566l-4.311 1.767' }),
_react2.default.createElement('path', { fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M42 32h-8l-3.55-12.423c-2.087.676-4.437.773-7.264-1.477-1.98-1.576-3.29-3.917-3.178-6.444.081-1.87.826-3.554 1.976-4.878L20 4 7.35 13.277a3 3 0 0 0-.695 4.122L27 44h19v-8a4 4 0 0 0-4-4z' }),
_react2.default.createElement('path', { 'data-color': 'color-2', fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M2 28h6' }),
_react2.default.createElement('path', { 'data-color': 'color-2', fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M7 35h6' }),
_react2.default.createElement('path', { 'data-color': 'color-2', fill: 'none', stroke: '#444', strokeWidth: '2', strokeLinecap: 'square', strokeMiterlimit: '10', d: 'M18 42h-6' })
);
};
SvgIcon.displayName = "IconOutlineRunningShoe";
SvgIcon.defaultProps = { "viewBox": "0 0 48 48", "xmlns": "http://www.w3.org/2000/svg" };
exports.default = SvgIcon;
/* eslint-enable */