UNPKG

@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 892 B
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 20 20", 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: "M11 10a1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1zm-1-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16zm3.713 3.691a.615.615 0 0 1 .498.947L11.34 11.15a.618.618 0 0 1-.19.19L6.64 14.21c-.555.353-1.202-.294-.85-.849L8.66 8.85a.618.618 0 0 1 .19-.19l4.511-2.87a.619.619 0 0 1 .352-.099z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(CompassIcon); module.exports = ForwardRef;