UNPKG

@nomercyicons/react

Version:
30 lines 942 B
const React = require("react"); function OfflineShareSharpIcon({ 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("path", { fill: "none", d: "M0 0h24v24H0V0z" }), /*#__PURE__*/React.createElement("path", { d: "M6 5H4v18h12v-2H6z" }), /*#__PURE__*/React.createElement("path", { d: "M20 1H8v18h12V1zm-2 14h-8V5h8v10z" }), /*#__PURE__*/React.createElement("path", { d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H11V12h1.5z" })); } const ForwardRef = React.forwardRef(OfflineShareSharpIcon); module.exports = ForwardRef;