@nomercyicons/react
Version:
24 lines • 3.3 kB
JavaScript
import * as React from "react";
function FivehundredpxIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 36 46",
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: "#0A0B09",
fillRule: "evenodd",
d: "M35.374 38.234c-.327-.323-.604-.514-.848-.584a.618.618 0 00-.639.152l-.16.16a18.286 18.286 0 01-12.946 5.33 18.285 18.285 0 01-12.946-5.33c-1.752-1.742-3.073-3.689-3.924-5.786-.83-2.045-1.102-3.583-1.191-4.088l-.02-.112c-.115-.595-.666-.637-1.458-.516-.329.05-1.331.202-1.236.919l.003.016a20.827 20.827 0 005.9 11.48 20.964 20.964 0 006.685 4.481A21.001 21.001 0 0020.78 46c2.838 0 5.593-.553 8.187-1.645a20.964 20.964 0 006.685-4.48c.005-.005.11-.109.168-.172.213-.23.398-.632-.446-1.469zM20.754 4.93c-2.713 0-5.599.544-7.72 1.456a.603.603 0 00-.391.523c-.028.24.037.557.2.968.13.334.48 1.222 1.156.965 2.17-.823 4.57-1.276 6.755-1.276 2.477 0 4.88.482 7.14 1.433 1.797.755 3.492 1.847 5.335 3.434a.645.645 0 00.423.175c.36 0 .704-.351 1-.68.491-.549.83-1.005.344-1.462-1.76-1.657-3.688-2.895-6.069-3.896a20.971 20.971 0 00-8.173-1.64zm-3.698 22.804c.003.305.283.572.451.732l.053.05c.287.281.56.424.813.424.21 0 .338-.098.384-.14.127-.118 1.559-1.56 1.696-1.698l1.597 1.583c.148.165.308.248.496.254.255 0 .533-.151.826-.449.69-.7.344-1.076.178-1.259l-1.619-1.61 1.688-1.69c.37-.397.043-.82-.283-1.144-.473-.471-.93-.593-1.223-.324l-1.678 1.67-1.697-1.687a.467.467 0 00-.328-.13c-.226 0-.494.151-.796.451-.522.519-.633.878-.362 1.164l1.698 1.682-1.688 1.68c-.139.139-.208.287-.206.441zM6.293 30.225c.01.028.25.687.39 1.013a15 15 0 003.245 4.785 15.1 15.1 0 004.814 3.226 15.128 15.128 0 005.896 1.184c2.044 0 4.028-.398 5.896-1.184a15.1 15.1 0 004.814-3.226 15 15 0 003.245-4.786c.79-1.857 1.191-3.83 1.191-5.861 0-2.033-.4-4.005-1.19-5.862a15 15 0 00-3.246-4.785 15.101 15.101 0 00-4.814-3.227 15.129 15.129 0 00-5.896-1.184c-2.069 0-4.136.41-5.978 1.184-1.472.62-3.964 2.213-5.423 3.709l-.008.009V2.828h20.939c.762-.009.762-1.066.762-1.414 0-.348 0-1.405-.764-1.414H7.525a.992.992 0 00-.998.982v17.442c0 .563.705.97 1.36 1.108 1.28.272 1.575-.134 1.888-.565l.042-.057c.478-.706 1.973-2.202 1.988-2.217 2.333-2.319 5.452-3.596 8.783-3.596 3.315 0 6.426 1.277 8.759 3.596 2.34 2.327 3.63 5.41 3.63 8.683 0 3.283-1.283 6.367-3.612 8.682-2.299 2.285-5.51 3.596-8.812 3.596-2.235 0-4.394-.592-6.242-1.713l.008-10.605c0-1.415.617-2.952 1.65-4.113a6.068 6.068 0 014.588-2.058c1.72 0 3.327.65 4.524 1.828a6.12 6.12 0 011.843 4.391c0 3.544-2.803 6.32-6.382 6.32-.69 0-1.944-.303-1.996-.315-.722-.214-1.03.783-1.13 1.112-.39 1.264.195 1.515.316 1.552 1.152.356 1.907.423 2.897.423 5.052 0 9.163-4.088 9.163-9.113 0-4.984-4.108-9.04-9.157-9.04-2.473 0-4.795.94-6.54 2.646-1.662 1.625-2.615 3.792-2.615 5.944l-.001.053c-.008.268-.014 6.626-.015 8.713l-.01-.01c-.95-1.046-1.888-2.646-2.51-4.28-.244-.641-.795-.528-1.547-.298-.328.1-1.328.407-1.107 1.125l.003.009z"
}));
}
const ForwardRef = React.forwardRef(FivehundredpxIcon);
export default ForwardRef;