@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
25 lines • 876 B
JavaScript
const React = require("react");
function Sun02Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 25 25",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12.5 1.83v-.79m0 22.92v-.79M23.17 12.5h.79m-22.92 0h.79m18.215-7.545.56-.559M4.394 20.604l.56-.56m15.09 0 .56.56M4.394 4.396l.56.56m13.853 7.5a6.323 6.323 0 1 1-12.646 0 6.323 6.323 0 0 1 12.646 0Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Sun02Icon);
module.exports = ForwardRef;