UNPKG

@nomercyicons/react

Version:
29 lines 1 kB
const React = require("react"); function ChairAltTwoToneIcon({ 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: "M7 14h10v2H7zM7 5h10v3H7z", opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zm0 4v2H7v-2h10zm-7-2v-2h4v2h-4zM7 8V5h10v3H7z" })); } const ForwardRef = React.forwardRef(ChairAltTwoToneIcon); module.exports = ForwardRef;