@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 1.07 kB
JavaScript
const React = require("react");
function HelpIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M12 22H7.823c-5.186 0-7.31-3.91-4.717-8.693l2.089-3.86 2.088-3.86c2.593-4.783 6.84-4.783 9.434 0l2.088 3.86 2.089 3.86c2.593 4.784.47 8.693-4.717 8.693z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12 13V8"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 17,
r: 1,
fill: "#4E5964"
}));
}
const ForwardRef = React.forwardRef(HelpIcon);
module.exports = ForwardRef;