@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.27 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8.75 4.25H21a.75.75 0 0 1 0 1.5H8.75zM15.75 11.25H21a.75.75 0 0 1 0 1.5h-5.25zM9.75 18.25H21a.75.75 0 0 1 0 1.5H9.75zM2.25 5A.75.75 0 0 1 3 4.25h1.25v1.5H3A.75.75 0 0 1 2.25 5M2.25 12a.75.75 0 0 1 .75-.75h8.25v1.5H3a.75.75 0 0 1-.75-.75M2.25 19a.75.75 0 0 1 .75-.75h2.25v1.5H3a.75.75 0 0 1-.75-.75M4.25 4c0-.966.784-1.75 1.75-1.75h1c.966 0 1.75.784 1.75 1.75v2A1.75 1.75 0 0 1 7 7.75H6A1.75 1.75 0 0 1 4.25 6zM11.25 11c0-.966.784-1.75 1.75-1.75h1c.966 0 1.75.784 1.75 1.75v2A1.75 1.75 0 0 1 14 14.75h-1A1.75 1.75 0 0 1 11.25 13zM5.25 18c0-.966.784-1.75 1.75-1.75h1c.966 0 1.75.784 1.75 1.75v2A1.75 1.75 0 0 1 8 21.75H7A1.75 1.75 0 0 1 5.25 20z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(Settings2Icon);
module.exports = ForwardRef;