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 1.04 kB
const React = require("react"); function PinIcon({ 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: "M13.22 2a.75.75 0 0 0-.529.219l-1.61 1.61a.75.75 0 0 0 0 1.061l.275.278-2.697 2.697c-.678-.4-1.432-.617-2.175-.524-.99.124-1.93.6-2.652 1.322a.75.75 0 0 0 0 1.06l2.69 2.692-4.301 4.302a.75.75 0 0 0 0 1.062.75.75 0 0 0 1.062 0l4.302-4.302 2.69 2.691a.75.75 0 0 0 1.061 0c.722-.722 1.199-1.663 1.322-2.652.093-.744-.123-1.497-.523-2.175l2.699-2.697.275.275a.75.75 0 0 0 1.06 0l1.611-1.611a.75.75 0 0 0 0-1.06l-4.028-4.03A.75.75 0 0 0 13.22 2Z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(PinIcon); module.exports = ForwardRef;