@bemit/consent-ui-formanta
Version:
© 2022 [bemit](https://bemit.eu)
28 lines (27 loc) • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IcHelpOutline = void 0;
var _react = _interopRequireDefault(require("react"));
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
var IcHelpOutline = exports.IcHelpOutline = function IcHelpOutline(_ref) {
var _ref$fontSize = _ref.fontSize,
fontSize = _ref$fontSize === void 0 ? '1em' : _ref$fontSize,
fill = _ref.fill,
style = _ref.style;
return (0, _jsxRuntime.jsxs)("svg", {
height: fontSize,
viewBox: "0 0 24 24",
width: fontSize,
fill: fill || 'currentColor',
style: style,
children: [(0, _jsxRuntime.jsx)("path", {
d: "M0 0h24v24H0z",
fill: "none"
}), (0, _jsxRuntime.jsx)("path", {
d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"
})]
});
};