@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.37 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 ChatPlus({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChatPlus",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7 3h2v2h2v2H9v2H7V7H5V5h2V3Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.004 0h12.043A1.005 1.005 0 0 1 15 1.001v10.01a1 1 0 0 1-1.004 1.002H6.36l-3.803 2.803a.995.995 0 0 1-.49.18 1.003 1.003 0 0 1-.514-.09 1.003 1.003 0 0 1-.552-.89V1a1 1 0 0 1 1.003-1Zm4.074 10.01h6.965V2.022H3.007v10.011l2.469-1.822c.174-.13.385-.2.602-.2Z",
shapeRendering: "geometricPrecision"
}));
}
ChatPlus.displayName = 'ChatPlus';
export default createBaseComponent(ChatPlus);