@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.23 kB
JavaScript
const React = require("react");
function RobotIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M10 3c-.823 0-1.5.677-1.5 1.5 0 .55.303 1.036.75 1.297V7h-2a3.761 3.761 0 0 0-3.674 3H3.5c-.82 0-1.5.68-1.5 1.5v1c0 .82.68 1.5 1.5 1.5h.076c.35 1.708 1.866 3 3.674 3h5.5a3.761 3.761 0 0 0 3.674-3h.076c.82 0 1.5-.68 1.5-1.5v-1c0-.82-.68-1.5-1.5-1.5h-.076a3.761 3.761 0 0 0-3.674-3h-2V5.797c.447-.261.75-.746.75-1.297 0-.823-.677-1.5-1.5-1.5zM8 9.25c.686 0 1.25.564 1.25 1.25S8.686 11.75 8 11.75s-1.25-.564-1.25-1.25S7.314 9.25 8 9.25zm4 0c.686 0 1.25.564 1.25 1.25s-.564 1.25-1.25 1.25-1.25-.564-1.25-1.25.564-1.25 1.25-1.25zm-4.5 4h5a.75.75 0 0 1 .75.75.75.75 0 0 1-.75.75h-5a.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(RobotIcon);
module.exports = ForwardRef;