@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 828 B
JavaScript
const React = require("react");
function Settings03Icon({
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: "M15.05 9H5.5a2.5 2.5 0 010-5h9.55m-6.1 16h9.55a2.5 2.5 0 000-5H8.95M3 17.5a3.5 3.5 0 107 0 3.5 3.5 0 00-7 0zm18-11a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0z"
}));
}
const ForwardRef = React.forwardRef(Settings03Icon);
module.exports = ForwardRef;