UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

60 lines 1.52 kB
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.5 5H21", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M15.5 12H21" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M9.5 19H21", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3 5h1.5" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3 12h8.5", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3 19h2.5" }), /*#__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;