@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.3 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 SemrushRank({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "SemrushRank",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11Zm2.571-14.196-2.218-4.145a.4.4 0 0 0-.706 0L9.43 8.804 4.756 9.6a.4.4 0 0 0-.217.675l3.301 3.348-.675 4.63a.4.4 0 0 0 .57.417L12 16.604l4.265 2.067a.4.4 0 0 0 .57-.418l-.675-4.629 3.302-3.348a.4.4 0 0 0-.218-.675l-4.673-.797Z",
shapeRendering: "geometricPrecision"
}));
}
SemrushRank.displayName = 'SemrushRank';
export default createBaseComponent(SemrushRank);