@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.32 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const SettingsIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"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.496 4.202c.362-1.603 2.646-1.603 3.008 0l.128.566a1.542 1.542 0 0 0 2.328.964l.49-.31c1.39-.877 3.005.738 2.127 2.128l-.31.49c-.568.901-.074 2.093.965 2.328l.566.128c1.603.362 1.603 2.646 0 3.008l-.566.128a1.542 1.542 0 0 0-.965 2.328l.31.49c.878 1.39-.737 3.005-2.127 2.127l-.49-.31a1.542 1.542 0 0 0-2.328.965l-.128.566c-.362 1.603-2.646 1.603-3.008 0l-.128-.566a1.542 1.542 0 0 0-2.328-.965l-.49.31c-1.39.878-3.005-.737-2.127-2.127l.31-.49c.568-.901.074-2.093-.965-2.328l-.566-.128c-1.603-.362-1.603-2.646 0-3.008l.566-.128a1.542 1.542 0 0 0 .964-2.328l-.31-.49c-.877-1.39.738-3.005 2.128-2.127l.49.31c.901.568 2.093.074 2.328-.965z"
}));
const ForwardRef = forwardRef(SettingsIcon);
module.exports = ForwardRef;