mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-25 22:41:54 +02:00
31 lines
No EOL
898 B
JavaScript
31 lines
No EOL
898 B
JavaScript
const React = require("react");
|
|
|
|
function MapPinIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
fill: "none",
|
|
viewBox: "0 0 24 24",
|
|
strokeWidth: 1.5,
|
|
stroke: "currentColor",
|
|
"aria-hidden": "true",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round",
|
|
d: "M15 10.5a3 3 0 11-6 0 3 3 0 016 0z"
|
|
}), /*#__PURE__*/React.createElement("path", {
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round",
|
|
d: "M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(MapPinIcon);
|
|
module.exports = ForwardRef; |