@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.65 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledQuestionSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M13.9669 0H8.15333C5.31148 0 3 2.31148 3 5.15333C3 6.10186 3.76817 6.82279 4.71778 6.82279C5.66738 6.82279 6.43555 6.05408 6.43555 5.15333C6.43555 4.2064 7.20533 3.43555 8.15333 3.43555H13.9669C15.4968 3.43555 16.7422 4.6804 16.7422 6.21566C16.7422 7.27424 16.1533 8.22707 15.1049 8.75636L9.86037 11.8306C9.28598 12.142 9.01221 12.7056 9.01221 13.3122V15.4594C9.01221 16.408 9.78038 17.1767 10.73 17.1767C11.6796 17.1767 12.4478 16.408 12.4478 15.4594V14.2946L16.7422 11.7716C18.861 10.7114 20.1778 8.5819 20.1778 6.21566C20.1778 2.78816 17.3917 0 13.9669 0ZM10.73 19.7539C9.54419 19.7539 8.58277 20.7153 8.58277 21.9011C8.58277 23.0869 9.54419 24 10.73 24C11.9158 24 12.8772 23.0391 12.8772 21.9011C12.8772 20.7631 11.9163 19.7539 10.73 19.7539Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledQuestionSolid);
const QuestionSolid = /*#__PURE__*/memo(ForwardRef);
export default QuestionSolid;