@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.72 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 StyledQuestionRegular = ({
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: "M10.7141 20.571C9.76753 20.571 8.99987 21.3386 8.99987 22.2852C8.99987 23.2318 9.76753 24 10.7141 24C11.6607 24 12.4284 23.2318 12.4284 22.2852C12.4284 21.3386 11.6623 20.571 10.7141 20.571ZM14.314 0H8.5713C5.49959 0 3 2.49959 3 5.5713V6.42843C3 7.14091 3.57588 7.71411 4.28569 7.71411C4.99549 7.71411 5.57137 7.14091 5.57137 6.42843V5.5713C5.57137 3.91706 6.91706 2.57137 8.5713 2.57137H14.314C16.1086 2.57137 17.5711 4.03384 17.5711 5.82844C17.5711 7.04234 16.9047 8.14643 15.8301 8.71106L11.9462 10.7569C10.3445 11.5712 9.42843 13.1729 9.42843 14.9247V15.8568C9.42843 16.5666 10.0043 17.143 10.7141 17.143C11.4239 17.143 11.9998 16.5693 11.9998 15.8568V14.9247C11.9998 14.127 12.4384 13.3995 13.1451 13.0277L17.0274 10.9846C18.9479 9.97478 20.1425 7.99804 20.1425 5.82844C20.1425 2.61476 17.5282 0 14.314 0Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledQuestionRegular);
const QuestionRegular = /*#__PURE__*/memo(ForwardRef);
export default QuestionRegular;