@nomercyicons/react
Version:
24 lines • 1.93 kB
JavaScript
const React = require("react");
function BehanceIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 30",
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: "M30.672 5.006h12.711V1.364H30.672v3.642zm3.011 7.946c-.81.824-1.32 1.94-1.53 3.35h9.887c-.105-1.504-.618-2.64-1.527-3.422-.92-.777-2.052-1.164-3.407-1.164-1.467 0-2.613.412-3.423 1.236zm8.58-4.889c1.532.674 2.794 1.743 3.787 3.202.906 1.286 1.487 2.779 1.753 4.474.155.991.217 2.428.191 4.296H32.012c.096 2.17.853 3.692 2.298 4.564.874.543 1.927.815 3.163.815 1.301 0 2.365-.33 3.18-.99.45-.36.845-.856 1.183-1.49h5.857c-.156 1.28-.867 2.586-2.126 3.911C43.603 28.948 40.851 30 37.315 30c-2.92 0-5.497-.885-7.724-2.662-2.238-1.773-3.35-4.663-3.35-8.661 0-3.75 1.007-6.627 3.02-8.629 2.018-1.996 4.628-3.001 7.843-3.001 1.91 0 3.629.34 5.159 1.016zM5.913 16.38v7.804h7.202c1.287 0 2.291-.173 3.005-.515 1.301-.64 1.95-1.855 1.95-3.653 0-1.526-.626-2.57-1.887-3.14-.706-.318-1.697-.485-2.967-.496H5.913zm0-11.299v6.457h7.213c1.284 0 2.331-.242 3.138-.727.802-.484 1.205-1.342 1.205-2.567 0-1.367-.53-2.266-1.591-2.706-.92-.304-2.089-.457-3.508-.457H5.913zm16.109-1.963c.906 1.245 1.36 2.732 1.36 4.466 0 1.785-.454 3.224-1.372 4.31-.513.607-1.267 1.164-2.263 1.665 1.513.546 2.653 1.406 3.429 2.584.768 1.175 1.154 2.606 1.154 4.288 0 1.734-.44 3.29-1.323 4.666a8.132 8.132 0 01-2.1 2.303c-.946.715-2.06 1.202-3.35 1.47-1.29.264-2.684.392-4.191.392H0V0h14.334c3.618.053 6.178 1.091 7.688 3.118z"
}));
}
const ForwardRef = React.forwardRef(BehanceIcon);
module.exports = ForwardRef;