@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.55 kB
JavaScript
const React = require("react");
function RadialRaysIcon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M12 2.25a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75V3a.75.75 0 0 0-.75-.75ZM5.637 4.887a.75.75 0 0 0-.532.218.75.75 0 0 0 0 1.061L7.58 8.641a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06L6.167 5.104a.75.75 0 0 0-.53-.218zm12.726 0a.75.75 0 0 0-.529.218L15.359 7.58a.75.75 0 0 0 0 1.06.75.75 0 0 0 1.06 0l2.476-2.474a.75.75 0 0 0 0-1.06.75.75 0 0 0-.532-.22zM3 11.25a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h3.5a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75Zm14.5 0a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75H21a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75Zm-9.389 3.889a.75.75 0 0 0-.53.22l-2.476 2.475a.75.75 0 0 0 0 1.06.75.75 0 0 0 1.061 0l2.475-2.474a.75.75 0 0 0 0-1.06.75.75 0 0 0-.53-.221zm7.778 0a.75.75 0 0 0-.53.22.75.75 0 0 0 0 1.06l2.475 2.476a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.061l-2.474-2.475a.75.75 0 0 0-.531-.22zM12 16.75a.75.75 0 0 0-.75.75V21a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(RadialRaysIcon);
module.exports = ForwardRef;