@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
42 lines • 1.02 kB
JavaScript
const React = require("react");
function Settings2Icon({
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",
d: "M8 5h13M15 12h6M9 19h12M3 5h2M3 12h9M3 19h2"
}), /*#__PURE__*/React.createElement("rect", {
width: 3,
height: 4,
x: 5,
y: 3,
rx: 1
}), /*#__PURE__*/React.createElement("rect", {
width: 3,
height: 4,
x: 12,
y: 10,
rx: 1
}), /*#__PURE__*/React.createElement("rect", {
width: 3,
height: 4,
x: 6,
y: 17,
rx: 1
}));
}
const ForwardRef = React.forwardRef(Settings2Icon);
module.exports = ForwardRef;