@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.41 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Robot({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Robot",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M20 11.048v1a3 3 0 0 1 0 6v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a3 3 0 1 1 0-6v-1a2 2 0 0 1 2-2h5v-2.22a3 3 0 1 1 2 0v2.22h5a2 2 0 0 1 2 2Zm-7.444-7.831a1 1 0 1 0-1.112 1.663 1 1 0 0 0 1.112-1.663ZM3.293 14.341A1 1 0 0 0 4 16.048v-2a1 1 0 0 0-.707.293ZM6 11.048v10h12v-10H6Zm14.707 3.293a1 1 0 0 0-.707-.293v2a1 1 0 0 0 .707-1.707ZM9 13.05a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1Zm6 0a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1Z",
shapeRendering: "geometricPrecision"
}));
}
Robot.displayName = 'Robot';
export default createBaseComponent(Robot);