UNPKG

@nomercyicons/react

Version:
31 lines 1.03 kB
const React = require("react"); function DynamicFeedTwoToneIcon({ 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 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M12 7h8v4h-8z", opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" }), /*#__PURE__*/React.createElement("path", { d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" })); } const ForwardRef = React.forwardRef(DynamicFeedTwoToneIcon); module.exports = ForwardRef;