UNPKG

@nomercyicons/react

Version:
29 lines 1.18 kB
const React = require("react"); function PolylineRoundedIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", 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("g", { fill: "none" }, /*#__PURE__*/React.createElement("path", { d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M0 0h24v24H0z" })), /*#__PURE__*/React.createElement("path", { d: "M10.04 6.85L7.3 10H4.5c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h3c.14 0 .27-.02.39-.05L15 19.5v1c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3c-.75 0-1.37.55-1.48 1.27L9 14.26V11.5c0-.12-.01-.24-.04-.36L11.7 8h2.8c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3c-.83 0-1.5.67-1.5 1.5v3c0 .12.01.24.04.35z" })); } const ForwardRef = React.forwardRef(PolylineRoundedIcon); module.exports = ForwardRef;