@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.27 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 Rss({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Rss",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M2.05 1a1 1 0 1 0 0 2c6.892 0 11.17 5.2 10.938 10.963a1 1 0 0 0 1.998.08C15.264 7.185 10.12 1 2.05 1Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.002 13.945c.186-3.213-2.412-6.153-5.938-5.928a1 1 0 0 1-.128-1.996c4.818-.307 8.313 3.722 8.062 8.04a1 1 0 0 1-1.996-.116ZM5 13.003a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",
shapeRendering: "geometricPrecision"
}));
}
Rss.displayName = 'Rss';
export default createBaseComponent(Rss);