@nomercyicons/react
Version:
24 lines • 1.55 kB
JavaScript
const React = require("react");
function WordpressIcon({
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: "M0 24c0-3.48.747-6.784 2.078-9.768l11.448 31.366C5.52 41.708 0 33.5 0 24zm40.202-1.211c0 2.053-.791 4.437-1.826 7.758l-2.396 7.998-8.673-25.798c1.445-.076 2.747-.23 2.747-.23 1.293-.15 1.141-2.053-.153-1.976 0 0-3.887.304-6.396.304-2.359 0-6.322-.304-6.322-.304-1.294-.077-1.446 1.9-.153 1.977 0 0 1.226.153 2.519.23l3.738 10.243-5.253 15.752-8.74-25.996a48.438 48.438 0 002.747-.23c1.293-.15 1.14-2.053-.153-1.976 0 0-3.886.304-6.396.304-.45 0-.981-.01-1.545-.028C8.239 4.302 15.614 0 24 0a23.909 23.909 0 0116.206 6.3c-.103-.006-.204-.02-.31-.02-2.359 0-4.031 2.054-4.031 4.26 0 1.978 1.141 3.652 2.358 5.63.912 1.598 1.979 3.652 1.979 6.619zm4.858-10.304A23.883 23.883 0 0148 24c0 8.853-4.799 16.584-11.934 20.744l7.33-21.194c1.37-3.425 1.826-6.163 1.826-8.597 0-.884-.059-1.703-.162-2.468zM24.42 26.1l7.377 20.211c.048.119.108.227.171.33A23.968 23.968 0 0124 48c-2.355 0-4.629-.344-6.78-.977l7.202-20.924z"
}));
}
const ForwardRef = React.forwardRef(WordpressIcon);
module.exports = ForwardRef;