@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 934 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const HelpIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3.336 12.82c-1.24 2.288-1.433 4.525-.502 6.241.94 1.732 2.892 2.69 5.407 2.69h7.519c2.515 0 4.467-.958 5.407-2.69.931-1.716.737-3.953-.503-6.242l-3.759-6.946C15.67 3.593 13.924 2.25 12 2.25c-1.923 0-3.668 1.34-4.904 3.621zm8.665.93a.75.75 0 0 1-.75-.75V8a.75.75 0 0 1 1.5 0v5a.75.75 0 0 1-.75.75m0 4.25a1 1 0 1 0 0-2 1 1 0 0 0 0 2",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(HelpIcon);
export default ForwardRef;