@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.11 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var QuestionCircle = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M24 4a20 20 0 1 1 0 40 20 20 0 0 1 0-40Zm.25 28a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0-19A6.37 6.37 0 0 0 18 19.25a1.25 1.25 0 0 0 2.47.25l.02-.12.02-.32a3.88 3.88 0 0 1 3.74-3.56A3.87 3.87 0 0 1 28 19.25c0 1.19-.42 2.04-1.62 3.4l-.2.23-1.03 1.1c-1.64 1.77-2.32 2.99-2.31 4.78a1.25 1.25 0 0 0 2.44.35l.03-.12.02-.12v-.13l.01-.16c.04-.8.4-1.49 1.28-2.5l.19-.22 1.01-1.08c1.91-2.06 2.68-3.41 2.68-5.53A6.36 6.36 0 0 0 24.25 13Z"
}));
});
QuestionCircle.displayName = 'QuestionCircle';
export var QuestionCircleDimensions = {
height: 48,
width: 48
};