@heroicons/react
Version:
15 lines (13 loc) • 480 B
JavaScript
const React = require("react");
function LocationMarkerIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor"
}, 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"
}));
}
module.exports = LocationMarkerIcon;