@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.43 kB
JavaScript
import * as React from "react";
function SettingsIcon({
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", {
d: "M8.75 12a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M13.671 3.336c-.402-1.781-2.94-1.781-3.342 0l-.142.629A1.713 1.713 0 0 1 7.6 5.036l-.546-.344c-1.544-.975-3.338.82-2.363 2.363l.344.546c.632 1 .083 2.325-1.071 2.586l-.63.142c-1.78.402-1.78 2.94 0 3.342l.63.142A1.713 1.713 0 0 1 5.036 16.4l-.344.546c-.975 1.544.82 3.338 2.363 2.363l.546-.344c1-.632 2.325-.083 2.586 1.071l.142.63c.402 1.78 2.94 1.78 3.342 0l.142-.63a1.713 1.713 0 0 1 2.586-1.071l.546.344c1.544.975 3.338-.82 2.363-2.363l-.344-.546a1.713 1.713 0 0 1 1.071-2.586l.63-.142c1.78-.402 1.78-2.94 0-3.342l-.63-.142A1.713 1.713 0 0 1 18.964 7.6l.344-.546c.975-1.544-.82-3.338-2.363-2.363l-.546.344c-1 .632-2.325.083-2.586-1.071zM12 7.25a4.75 4.75 0 1 0 0 9.5 4.75 4.75 0 0 0 0-9.5",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(SettingsIcon);
export default ForwardRef;