UNPKG

@jfstech/icons-react

Version:

<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color

26 lines 987 B
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", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14.387 14.387a3.375 3.375 0 0 1-4.773 0m4.772 0a3.375 3.375 0 0 0 0-4.773m0 4.772 3.58 3.58m-8.352-3.58a3.375 3.375 0 0 1 0-4.772m0 4.772-3.58 3.58m3.58-8.352a3.375 3.375 0 0 1 4.772 0m-4.772 0-3.58-3.58m8.353 3.58 3.58-3.58m.397 12.33A9 9 0 1 1 5.636 5.636a9 9 0 0 1 12.728 12.728" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(HelpIcon); module.exports = ForwardRef;