UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 896 B
import * as React from "react"; function Dataflow02Icon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 4v11.2c0 1.68 0 2.52.327 3.162a3 3 0 001.311 1.311C14.28 20 15.12 20 16.8 20h.2m0 0a2 2 0 104 0 2 2 0 00-4 0zM7 4h10M7 4a2 2 0 11-4 0 2 2 0 014 0zm10 0a2 2 0 104 0 2 2 0 00-4 0zm-5 8h5m0 0a2 2 0 104 0 2 2 0 00-4 0z" })); } const ForwardRef = React.forwardRef(Dataflow02Icon); export default ForwardRef;