@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.02 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const HelpIcon = ({
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",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M12 21H8.24c-4.667 0-6.578-3.518-4.244-7.824l1.88-3.473 1.879-3.474c2.334-4.305 6.156-4.305 8.49 0l1.88 3.474 1.88 3.473c2.333 4.306.422 7.824-4.246 7.824z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12 14.15V8M11.999 16.891a.25.25 0 1 0 .002.5.25.25 0 0 0-.002-.5",
opacity: 0.4
}));
const ForwardRef = forwardRef(HelpIcon);
module.exports = ForwardRef;