@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.17 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Settings2Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M3.99 2.75c-.977 0-1.77.792-1.77 1.769V5.74c0 .976.792 1.768 1.77 1.768H5.21c.977 0 1.769-.792 1.769-1.768V4.519c0-.977-.792-1.769-1.769-1.769zM3.99 9.37c-.977 0-1.77.792-1.77 1.769v1.222c0 .977.792 1.769 1.77 1.769H5.21c.977 0 1.769-.792 1.769-1.769V11.14c0-.977-.792-1.769-1.769-1.769zM3.99 15.99c-.977 0-1.77.792-1.77 1.77v1.221c0 .977.792 1.769 1.77 1.769H5.21c.977 0 1.769-.792 1.769-1.768v-1.223c0-.977-.792-1.768-1.769-1.768zM9 5.75h12.115a.75.75 0 0 0 0-1.5H9a.75.75 0 0 0 0 1.5M9 12.37h12.115a.75.75 0 0 0 0-1.5H9a.75.75 0 1 0 0 1.5M21.115 18.99H9a.75.75 0 0 1 0-1.5h12.115a.75.75 0 0 1 0 1.5"
}));
const ForwardRef = forwardRef(Settings2Icon);
export default ForwardRef;