@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
38 lines • 1.01 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const AiIcon = ({
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("rect", {
width: 18,
height: 18,
x: 3,
y: 3,
rx: 4.5
}), /*#__PURE__*/React.createElement("g", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5,
opacity: 0.4
}, /*#__PURE__*/React.createElement("path", {
d: "m7.5 15.858 2.667-8 2.666 8M8.387 13.636h3.555"
})), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M15.834 7.858v8",
opacity: 0.4
}));
const ForwardRef = forwardRef(AiIcon);
module.exports = ForwardRef;