@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.39 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootRobot({
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"
}));
}
RootRobot.displayName = 'Robot';
const Robot = createBaseComponent(RootRobot);
export { Robot as default };