@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.68 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 Comics({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Comics",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.037 2.92c-.2-.617.473-1.151 1.028-.816l6.72 4.064a.5.5 0 0 0 .542-.016l2.945-2.023a.7.7 0 0 1 1.026.271l1.338 2.756a.5.5 0 0 0 .724.2l4.55-2.982c.563-.37 1.272.191 1.042.824l-2.759 7.6a.5.5 0 0 0 .024.396l2.704 5.338a.7.7 0 0 1-.857.976l-6.885-2.424a.5.5 0 0 0-.444.056L8.116 20.88a.7.7 0 0 1-1.067-.412l-.818-3.26a.5.5 0 0 0-.24-.313l-3.626-2.047a.7.7 0 0 1-.085-1.163l2.326-1.802a.5.5 0 0 0 .17-.55L2.036 2.92Zm2.984 2.704 1.656 5.09a2.5 2.5 0 0 1-.846 2.75l-.78.605 1.923 1.085a2.5 2.5 0 0 1 1.196 1.568l.37 1.474 4.087-2.72a2.5 2.5 0 0 1 2.216-.278l3.83 1.348-1.24-2.448a2.5 2.5 0 0 1-.12-1.982l1.426-3.928-1.283.841a2.5 2.5 0 0 1-3.62-1l-.677-1.396-1.7 1.168a2.5 2.5 0 0 1-2.71.078L5.022 5.624Z",
shapeRendering: "geometricPrecision"
}));
}
Comics.displayName = 'Comics';
export default createBaseComponent(Comics);