@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.4 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Bot1Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M6.75 11.5a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12.75 5.85v-.268a1.75 1.75 0 1 0-1.5 0v.268H8.8a.05.05 0 0 1-.05-.05A1.55 1.55 0 0 0 7.2 4.25H7A4.75 4.75 0 0 0 2.25 9v3.293a.75.75 0 0 0-1 .707v2a.75.75 0 0 0 1 .707v.793c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25v-.793a.75.75 0 0 0 1-.707v-2a.75.75 0 0 0-1-.707V9A4.75 4.75 0 0 0 17 4.25h-.2a1.55 1.55 0 0 0-1.55 1.55.05.05 0 0 1-.05.05zm-1-1.85a.25.25 0 1 0 .5 0 .25.25 0 0 0-.5 0M7.5 9.25a2.25 2.25 0 0 0 0 4.5h9a2.25 2.25 0 0 0 0-4.5zm.836 7.4a.75.75 0 0 1 1.013-.314c1.045.55 1.96.806 2.794.81.825.004 1.624-.238 2.448-.774a.75.75 0 0 1 .818 1.256c-1.038.677-2.12 1.023-3.272 1.018-1.142-.005-2.296-.356-3.486-.982a.75.75 0 0 1-.315-1.013",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(Bot1Icon);
module.exports = ForwardRef;