optimall-icons
Version:
Biblioteca de ícones do Optimall
33 lines • 2.25 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const ChatSquareCheckIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "chat, square, check",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.75 12c0-.69.56-1.25 1.25-1.25h.009a1.25 1.25 0 1 1 0 2.5H8c-.69 0-1.25-.56-1.25-1.25Zm3.995 0c0-.69.56-1.25 1.25-1.25h.01a1.25 1.25 0 1 1 0 2.5h-.01c-.69 0-1.25-.56-1.25-1.25Zm3.996 0c0-.69.56-1.25 1.25-1.25H16a1.25 1.25 0 1 1 0 2.5h-.009c-.69 0-1.25-.56-1.25-1.25Z",
fillRule: "evenodd",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.22 22.8c-.44 0-.89-.04-1.33-.12a.918.918 0 0 1-.68-.57c-.11-.3-.05-.63.15-.88.45-.56.76-1.23.9-1.95.03-.18-.07-.41-.28-.62C2.06 16.71 1 14.16 1 11.47 1 5.7 5.89 1 11.9 1c.5 0 .9.4.9.9s-.4.9-.9.9c-5.02 0-9.1 3.89-9.1 8.67 0 2.21.87 4.31 2.46 5.92.63.64.91 1.45.76 2.22-.09.48-.24.94-.43 1.38.78-.05 1.56-.27 2.26-.65.55-.29.82-.43 1.13-.48.31-.05.59 0 1.15.11.58.11 1.17.16 1.75.16h.01c5.02 0 9.1-3.89 9.1-8.67 0-.79-.11-1.57-.33-2.32-.14-.48.14-.98.61-1.12.48-.14.98.14 1.12.61.27.91.4 1.86.4 2.82 0 5.77-4.89 10.47-10.9 10.47-.68.04-1.41-.07-2.1-.2-.25-.05-.51-.1-.58-.1 0 .01-.26.15-.51.29-1.08.58-2.28.87-3.49.87l.01.02Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.9 8.8h-.05a.925.925 0 0 1-.76-.5c-.68-1.37-1.27-1.51-1.28-1.51-.5 0-.86-.4-.86-.9s.44-.9.94-.9c.2 0 1.09.07 2.03 1.26 1.17-1.63 3.44-4.42 5.67-5.21.47-.17.98.08 1.15.55.17.47-.08.98-.55 1.15-2.07.73-4.7 4.32-5.54 5.63-.17.26-.45.42-.76.42l.01.01Z"
}));
});
export default ChatSquareCheckIcon;