@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 • 988 B
JavaScript
const React = require("react");
function CompassIcon({
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: "M13.25 12A1.25 1.25 0 0 1 12 13.25 1.25 1.25 0 0 1 10.75 12 1.25 1.25 0 0 1 12 10.75 1.25 1.25 0 0 1 13.25 12ZM12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zm4.525 4.5a.75.75 0 0 1 .608 1.152l-3.5 5.5a.75.75 0 0 1-.23.23l-5.5 3.5c-.677.43-1.465-.358-1.036-1.034l3.5-5.5a.75.75 0 0 1 .23-.23l5.5-3.5a.75.75 0 0 1 .428-.118Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(CompassIcon);
module.exports = ForwardRef;