@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.34 kB
JavaScript
const React = require("react");
function SettingsIcon({
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("circle", {
cx: 12,
cy: 12,
r: 4
}), /*#__PURE__*/React.createElement("path", {
d: "M10.329 3.336c.402-1.781 2.94-1.781 3.342 0l.142.629A1.713 1.713 0 0 0 16.4 5.036l.546-.344c1.544-.975 3.338.82 2.363 2.363l-.344.546a1.713 1.713 0 0 0 1.071 2.586l.63.142c1.78.402 1.78 2.94 0 3.342l-.63.142a1.713 1.713 0 0 0-1.071 2.586l.344.546c.975 1.544-.82 3.338-2.363 2.363l-.546-.344a1.713 1.713 0 0 0-2.586 1.071l-.142.63c-.402 1.78-2.94 1.78-3.342 0l-.142-.63A1.713 1.713 0 0 0 7.6 18.964l-.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 0 5.036 7.6l-.344-.546c-.975-1.544.82-3.338 2.363-2.363l.546.344c1 .632 2.325.083 2.586-1.071z"
}));
}
const ForwardRef = React.forwardRef(SettingsIcon);
module.exports = ForwardRef;