@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.25 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",
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: "M9.765 4.037c.538-2.383 3.932-2.383 4.47 0l.128.566a.792.792 0 0 0 1.196.496l.49-.311c2.066-1.304 4.467 1.097 3.163 3.162l-.31.491a.792.792 0 0 0 .494 1.196l.567.128c2.382.538 2.382 3.932 0 4.47l-.567.128a.792.792 0 0 0-.495 1.196l.31.49c1.305 2.066-1.096 4.467-3.161 3.163l-.492-.31a.792.792 0 0 0-1.195.494l-.128.567c-.538 2.382-3.932 2.382-4.47 0l-.128-.567a.792.792 0 0 0-1.196-.495l-.49.31c-2.066 1.305-4.467-1.096-3.163-3.161l.31-.492a.792.792 0 0 0-.495-1.195l-.566-.128c-2.383-.538-2.383-3.932 0-4.47l.566-.128A.792.792 0 0 0 5.1 8.44l-.311-.49C3.484 5.884 5.885 3.483 7.95 4.787l.491.31a.792.792 0 0 0 1.196-.495zM12 8.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5"
}));
const ForwardRef = forwardRef(SettingsIcon);
module.exports = ForwardRef;