@nomercyicons/react
Version:
24 lines • 947 B
JavaScript
const React = require("react");
function FacebookIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
fillRule: "evenodd",
d: "M25.638 48H2.65A2.65 2.65 0 010 45.35V2.65A2.649 2.649 0 012.65 0H45.35A2.649 2.649 0 0148 2.65v42.7A2.65 2.65 0 0145.351 48H33.119V29.412h6.24l.934-7.244h-7.174v-4.625c0-2.098.583-3.527 3.59-3.527l3.836-.002V7.535c-.663-.088-2.94-.285-5.59-.285-5.53 0-9.317 3.376-9.317 9.575v5.343h-6.255v7.244h6.255V48z"
}));
}
const ForwardRef = React.forwardRef(FacebookIcon);
module.exports = ForwardRef;