@semcore/icon
Version:
Semrush Icon Component
28 lines • 1.36 kB
JavaScript
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); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootRecent({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Recent",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 21A9 9 0 1 0 4.515 7H8a1 1 0 0 1 0 2H2c-.55 0-1-.45-1-1V2a1 1 0 0 1 2 0v3.674A10.987 10.987 0 0 1 12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11c-4.974 0-9.177-3.302-10.537-7.833l.01-.002a1 1 0 0 1 1.976-.315l.011-.002A9.004 9.004 0 0 0 12 21Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M12 5.5a1 1 0 0 1 1 1v5.086l3.707 3.707a1 1 0 0 1-1.414 1.414l-4-4A1 1 0 0 1 11 12V6.5a1 1 0 0 1 1-1Z",
shapeRendering: "geometricPrecision"
}));
}
RootRecent.displayName = 'Recent';
const Recent = createBaseComponent(RootRecent);
export { Recent as default };