@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.59 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 FacebookLike({
width = '20',
height = '20',
viewBox = '0 0 20 20',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "FacebookLike",
"data-group": "facebook",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M17 7c1.104 0 2 .896 2 2v3c0 1.889-.89 3.667-2.4 4.8-1.038.779-2.302 1.2-3.6 1.2h-5.3c-.271-.003-.537-.072-.776-.2-.205.709-.853 1.198-1.591 1.2h-2.666c-.92 0-1.667-.746-1.667-1.666v-7.667c0-.921.747-1.667 1.667-1.667h2.666c.783 0 1.46.546 1.627 1.312 1.086-1.164 1.643-2.724 1.54-4.312v-2.5c0-.829.671-1.5 1.5-1.5 1.938 0 3 2.18 3 3.5v2.5h4zm1 5v-3c0-.552-.447-1-1-1h-5v-3.5c0-.881-.76-2.5-2-2.5-.276 0-.5.224-.5.5v2.5c0 3.36-1.585 4.94-2.5 5.573v5.727c0 .387.313.7.7.7h5.3c2.762 0 5-2.238 5-5zm-12 5.333v-7.666c0-.369-.299-.667-.667-.667h-2.666c-.368 0-.667.298-.667.667v7.666c0 .368.299.667.667.667h2.666c.368 0 .667-.299.667-.667z",
shapeRendering: "geometricPrecision"
}));
}
FacebookLike.displayName = 'FacebookLike';
export default createBaseComponent(FacebookLike);