@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.27 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 FacebookComment({
width = '20',
height = '20',
viewBox = '0 0 20 20',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "FacebookComment",
"data-group": "facebook",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M15 1c2.209 0 4 1.791 4 4v5c0 2.209-1.791 4-4 4h-3.7l-4.612 3.881c-.075.075-.176.118-.282.119h-.006c-.221 0-.4-.18-.4-.4v-3.6c-2.209 0-4-1.791-4-4v-5c0-2.209 1.791-4 4-4h9zm0 1h-9c-1.657 0-3 1.343-3 3v5c0 1.656 1.343 3 3 3h1v3.312l3.935-3.312h4.065c1.657 0 3-1.344 3-3v-5c0-1.657-1.343-3-3-3z",
shapeRendering: "geometricPrecision"
}));
}
FacebookComment.displayName = 'FacebookComment';
export default createBaseComponent(FacebookComment);