@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.84 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 WebStories({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "WebStories",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 1c-.545 0-1.08.04-1.605.116a1 1 0 1 0 .29 1.98 9.083 9.083 0 0 1 1.566-.093 8.966 8.966 0 0 1 6.533 3.082 8.963 8.963 0 0 1 2.21 6.269 8.966 8.966 0 0 1-3.08 6.43 8.963 8.963 0 0 1-6.497 2.198 8.949 8.949 0 0 1-4.776-1.75l-.007-.006a9.054 9.054 0 0 1-1.86-1.86 1 1 0 0 0-1.605 1.194c.3.402.625.782.975 1.14a10.01 10.01 0 0 0 .571.542c.233.206.475.403.725.589l.008.005a10.948 10.948 0 0 0 6.997 2.155 10.96 10.96 0 0 0 7.857-3.774 10.955 10.955 0 0 0 2.69-7.662A10.96 10.96 0 0 0 19.218 3.7 10.958 10.958 0 0 0 12 1ZM6.634 4.774A1 1 0 0 0 5.44 3.169 11.058 11.058 0 0 0 3.17 5.44a1 1 0 1 0 1.604 1.194 9.058 9.058 0 0 1 1.86-1.86ZM3.095 10.684a1 1 0 1 0-1.979-.29 11.08 11.08 0 0 0 0 3.211 1 1 0 1 0 1.98-.29 9.083 9.083 0 0 1 0-2.63Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M11 12a1 1 0 0 0 1 1h5a1 1 0 1 0 0-2h-4V7a1 1 0 1 0-2 0v5Z",
shapeRendering: "geometricPrecision"
}));
}
WebStories.displayName = 'WebStories';
export default createBaseComponent(WebStories);