@morphemeicons/react
Version:
Morpheme Icons React
31 lines (29 loc) • 1.41 kB
JavaScript
import * as React from "react";
function Settings02Icon({
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: "M9.395 19.371l.584 1.315a2.213 2.213 0 004.045 0l.584-1.315a2.426 2.426 0 012.47-1.423l1.43.152a2.212 2.212 0 002.023-3.502l-.847-1.164a2.43 2.43 0 01-.46-1.434c0-.513.162-1.014.464-1.429l.847-1.163a2.21 2.21 0 00-.785-3.274 2.212 2.212 0 00-1.237-.228l-1.43.152a2.434 2.434 0 01-1.47-.312 2.426 2.426 0 01-1-1.117l-.59-1.315a2.212 2.212 0 00-4.044 0L9.395 4.63c-.207.468-.557.86-1 1.117-.445.256-.96.365-1.47.312l-1.434-.152a2.212 2.212 0 00-2.023 3.502l.847 1.163a2.43 2.43 0 010 2.858l-.847 1.163a2.21 2.21 0 00.786 3.273c.381.195.811.274 1.237.23l1.43-.153a2.434 2.434 0 012.474 1.43z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12 15a3 3 0 100-6 3 3 0 000 6z"
}));
}
const ForwardRef = React.forwardRef(Settings02Icon);
export default ForwardRef;