UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

36 lines 1.17 kB
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", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3 9a4 4 0 0 1 4-4h.2a.8.8 0 0 1 .8.8.8.8 0 0 0 .8.8h6.4a.8.8 0 0 0 .8-.8.8.8 0 0 1 .8-.8h.2a4 4 0 0 1 4 4v7.5a4.5 4.5 0 0 1-4.5 4.5h-9A4.5 4.5 0 0 1 3 16.5V9Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M15 17s-1.125 1-3 1-3-1-3-1" }), /*#__PURE__*/React.createElement("rect", { width: 12, height: 3, x: 6, y: 10, strokeLinecap: "round", rx: 1.5 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M2 15v-2M22 15v-2M12 5.128V6.5M11 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" })); const ForwardRef = forwardRef(Bot1Icon); module.exports = ForwardRef;