@semcore/icon
Version:
Semrush Icon Component
25 lines • 1.21 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 from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootFacebook({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Facebook",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 .007c-4.418 0-8 3.604-8 8.048 0 4.017 2.925 7.346 6.75 7.952v-5.625H4.718V8.055H6.75V6.282c0-2.019 1.195-3.132 3.021-3.132.876 0 1.793.157 1.793.157v1.98h-1.012c-.992 0-1.302.62-1.302 1.258v1.509h2.217l-.355 2.327H9.25v5.625c3.825-.603 6.75-3.933 6.75-7.95C16 3.61 12.418.006 8 .006Z",
shapeRendering: "geometricPrecision"
}));
}
RootFacebook.displayName = 'Facebook';
const Facebook = createBaseComponent(RootFacebook);
export { Facebook as default };