@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.37 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Recent({
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"
}));
}
Recent.displayName = 'Recent';
export default createBaseComponent(Recent);