sebikostudio-icons
Version:
A collection of icon components
32 lines • 1.35 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const QuestionMarkIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "question mark, questions, explanation, how to, learn more, more info",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("circle", {
cx: "9.5",
cy: "16.5",
r: "0.75",
fill: "currentColor",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M9.5 12.5V12.5C9.5 11.8753 9.81223 11.2918 10.332 10.9453L12.0077 9.8282C14.3826 8.24491 14.3826 4.75509 12.0077 3.1718L11.8548 3.06984C10.4437 2.1291 8.5927 2.18048 7.23595 3.19804L7.1 3.3C6.09278 4.05542 5.5 5.24097 5.5 6.5V6.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default QuestionMarkIcon;