@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 861 B
JavaScript
import * as React from "react";
function HelpIcon({
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",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.823 22c-5.186 0-7.31-3.91-4.717-8.693l4.177-7.72c2.593-4.783 6.84-4.783 9.434 0l4.177 7.72c2.593 4.784.47 8.693-4.717 8.693zm3.26-13.503.376 4.505a.543.543 0 0 0 1.082 0l.376-4.505a.92.92 0 1 0-1.834 0M12 15.5a1 1 0 1 0 0 2h.009a1 1 0 1 0 0-2z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(HelpIcon);
export default ForwardRef;