@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.28 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 24 24",
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: "M12 2.25A2.261 2.261 0 0 0 9.75 4.5c0 .971.63 1.807 1.5 2.12v1.13h-3a4.508 4.508 0 0 0-4.436 3.75H3.75a2.261 2.261 0 0 0-2.25 2.25v2A2.261 2.261 0 0 0 3.75 18h.064a4.508 4.508 0 0 0 4.436 3.75h7.5A4.508 4.508 0 0 0 20.186 18h.064a2.261 2.261 0 0 0 2.25-2.25v-2a2.261 2.261 0 0 0-2.25-2.25h-.064a4.508 4.508 0 0 0-4.436-3.75h-3V6.62a2.265 2.265 0 0 0 1.5-2.12A2.261 2.261 0 0 0 12 2.25zM9.25 11c.958 0 1.75.792 1.75 1.75s-.792 1.75-1.75 1.75-1.75-.792-1.75-1.75S8.292 11 9.25 11zm5.5 0c.958 0 1.75.792 1.75 1.75s-.792 1.75-1.75 1.75S13 13.708 13 12.75 13.792 11 14.75 11zm-6.5 6h7.5c.416 0 .75.334.75.75s-.334.75-.75.75h-7.5a.748.748 0 0 1-.75-.75c0-.416.335-.75.75-.75z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(RobotIcon);
module.exports = ForwardRef;