@geneui/icons
Version:
Gene UI icons distributed as SVG React components.
53 lines (49 loc) • 2 kB
JavaScript
import React from 'react';
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);
}
function _objectWithoutProperties(e, t) {
if (null == e) return {};
var o,
r,
i = _objectWithoutPropertiesLoose(e, t);
if (Object.getOwnPropertySymbols) {
var s = Object.getOwnPropertySymbols(e);
for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (e.includes(n)) continue;
t[n] = r[n];
}
return t;
}
var _excluded = ["size", "color"];
var SvgActivityRecent = function SvgActivityRecent(_ref) {
var _ref$size = _ref.size,
size = _ref$size === void 0 ? 24 : _ref$size,
_ref$color = _ref.color,
color = _ref$color === void 0 ? "currentColor" : _ref$color,
props = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
width: size,
height: size,
viewBox: "0 0 24 24",
fill: color,
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 3a9 9 0 1 1-8.963 8.182.75.75 0 1 1 1.494.135 7.46 7.46 0 0 0 2.166 5.986 7.46 7.46 0 0 0 5.304 2.197 7.5 7.5 0 1 0-6.003-11.998h2.756a.75.75 0 0 1 .102 1.493l-.102.007h-4.504a.75.75 0 0 1-.743-.648l-.007-.102v-4.5a.75.75 0 0 1 1.493-.102l.007.102-.001 2.591a8.986 8.986 0 0 1 7.001-3.343Zm-.75 4a.75.75 0 0 1 .743.648l.007.102v4.25h2.25a.75.75 0 0 1 .102 1.493l-.102.007h-3a.75.75 0 0 1-.743-.648l-.007-.102v-5a.75.75 0 0 1 .75-.75Z",
fill: color
}));
};
export { SvgActivityRecent as S, _objectWithoutProperties as _, _extends as a };