@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.49 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 SummaryAI({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "SummaryAI",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12.365 1.264a.385.385 0 0 0-.73 0l-.511 1.553a.48.48 0 0 1-.307.307l-1.553.51a.385.385 0 0 0 0 .731l1.553.511a.48.48 0 0 1 .307.307l.51 1.553a.385.385 0 0 0 .731 0l.511-1.553a.48.48 0 0 1 .307-.307l1.553-.51a.385.385 0 0 0 0-.731l-1.553-.511a.48.48 0 0 1-.307-.307l-.51-1.553ZM6.371 5.269a.39.39 0 0 0-.742 0L4.704 8.08a.977.977 0 0 1-.623.623l-2.812.925a.39.39 0 0 0 0 .742l2.812.925a.977.977 0 0 1 .623.623l.925 2.812a.39.39 0 0 0 .742 0l.925-2.812a.977.977 0 0 1 .623-.623l2.812-.925a.39.39 0 0 0 0-.742L7.92 8.704a.977.977 0 0 1-.623-.623L6.371 5.27Z",
shapeRendering: "geometricPrecision"
}));
}
SummaryAI.displayName = 'SummaryAI';
export default createBaseComponent(SummaryAI);