@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.3 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 ChatCheck({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChatCheck",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.55 21.89A1 1 0 0 0 3 22a1 1 0 0 0 .58-.2L8.72 18H21a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v18a1 1 0 0 0 .55.89ZM4 19V4l16-.02v12H8.41a1 1 0 0 0-.59.2L4 19Zm6.31-5.085a1 1 0 0 0 1.16-.255l5.31-6a1 1 0 0 0-1.5-1.32l-4.57 5.16-1.93-2.17a1 1 0 0 0-1.655.235 1 1 0 0 0 .165 1.105l2.68 3c.095.105.21.188.34.245Z",
shapeRendering: "geometricPrecision"
}));
}
ChatCheck.displayName = 'ChatCheck';
export default createBaseComponent(ChatCheck);