@heroicons/react
Version:
18 lines (16 loc) • 581 B
JavaScript
const React = require("react");
function LocationMarkerIcon(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",
ref: svgRef
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(LocationMarkerIcon);
module.exports = ForwardRef;