UNPKG

@nomercyicons/react

Version:
24 lines 1.96 kB
const React = require("react"); function RedditColorIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 40", 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: "#FF5700", fillRule: "evenodd", d: "M31.14 26.326c-1.794 0-3.302-1.442-3.302-3.22 0-1.777 1.508-3.267 3.302-3.267s3.249 1.49 3.249 3.267c0 1.778-1.455 3.22-3.249 3.22m.762 6.248c-1.671 1.655-4.248 2.459-7.878 2.459l-.025-.002-.026.002c-3.63 0-6.205-.804-7.875-2.459a1.289 1.289 0 010-1.837 1.32 1.32 0 011.854 0c1.152 1.142 3.121 1.698 6.021 1.698l.026.001.025-.001c2.9 0 4.87-.556 6.024-1.698a1.319 1.319 0 011.854 0c.511.509.511 1.33 0 1.837m-18.291-9.468c0-1.776 1.504-3.267 3.297-3.267 1.794 0 3.249 1.491 3.249 3.267 0 1.778-1.455 3.22-3.249 3.22-1.793 0-3.297-1.442-3.297-3.22M39.996 2.598c1.215 0 2.203.98 2.203 2.182a2.196 2.196 0 01-2.203 2.183 2.196 2.196 0 01-2.203-2.183c0-1.202.988-2.182 2.203-2.182M48 19.57c0-3.152-2.587-5.716-5.769-5.716a5.77 5.77 0 00-3.635 1.283c-3.517-2.191-7.981-3.511-12.766-3.79l2.496-7.82 6.86 1.6c.18 2.476 2.267 4.435 4.81 4.435 2.66 0 4.824-2.145 4.824-4.782 0-2.635-2.165-4.78-4.824-4.78a4.836 4.836 0 00-4.283 2.582l-7.97-1.86a1.311 1.311 0 00-1.55.873L23.094 11.3c-5.156.124-10.002 1.449-13.777 3.767a5.773 5.773 0 00-3.548-1.214C2.587 13.854 0 16.418 0 19.57c0 1.949.99 3.672 2.497 4.703-.063.454-.095.91-.095 1.372 0 3.94 2.311 7.606 6.508 10.32C12.933 38.567 18.258 40 23.903 40c5.644 0 10.969-1.433 14.992-4.035 4.197-2.714 6.509-6.38 6.509-10.32 0-.42-.029-.838-.082-1.253C46.931 23.377 48 21.595 48 19.57" })); } const ForwardRef = React.forwardRef(RedditColorIcon); module.exports = ForwardRef;