@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.51 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "SummaryAI",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M17.369 3.267a.388.388 0 0 0-.738 0l-.756 2.299a.485.485 0 0 1-.31.31l-2.298.755a.388.388 0 0 0 0 .738l2.299.756a.485.485 0 0 1 .31.31l.755 2.298c.117.356.62.356.738 0l.756-2.299a.485.485 0 0 1 .31-.31l2.298-.755a.388.388 0 0 0 0-.738l-2.299-.756a.485.485 0 0 1-.31-.31l-.755-2.298ZM9.873 9.27a.393.393 0 0 0-.746 0l-1.295 3.936a.982.982 0 0 1-.626.626L3.27 15.127a.393.393 0 0 0 0 .746l3.936 1.295c.297.097.529.33.626.626l1.295 3.936c.118.36.628.36.746 0l1.295-3.936a.982.982 0 0 1 .626-.626l3.936-1.295a.393.393 0 0 0 0-.746l-3.936-1.295a.982.982 0 0 1-.626-.626L9.873 9.27Z",
shapeRendering: "geometricPrecision"
}));
}
SummaryAI.displayName = 'SummaryAI';
export default createBaseComponent(SummaryAI);