UNPKG

@nomercyicons/react

Version:
41 lines 1.33 kB
const React = require("react"); function WorkspacesTwoToneIcon({ 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("circle", { cx: 6, cy: 17, r: 2, opacity: 0.3 }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 7, r: 2, opacity: 0.3 }), /*#__PURE__*/React.createElement("circle", { cx: 18, cy: 17, r: 2, opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M18 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM16 7c0-2.2-1.8-4-4-4S8 4.8 8 7s1.8 4 4 4 4-1.8 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" })); } const ForwardRef = React.forwardRef(WorkspacesTwoToneIcon); module.exports = ForwardRef;