1 | const React = require("react");
|
2 | function MapPinIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | fill: "none",
|
10 | viewBox: "0 0 24 24",
|
11 | strokeWidth: 1.5,
|
12 | stroke: "currentColor",
|
13 | "aria-hidden": "true",
|
14 | ref: svgRef,
|
15 | "aria-labelledby": titleId
|
16 | }, props), title ? React.createElement("title", {
|
17 | id: titleId
|
18 | }, title) : null, React.createElement("path", {
|
19 | strokeLinecap: "round",
|
20 | strokeLinejoin: "round",
|
21 | d: "M15 10.5a3 3 0 11-6 0 3 3 0 016 0z"
|
22 | }), React.createElement("path", {
|
23 | strokeLinecap: "round",
|
24 | strokeLinejoin: "round",
|
25 | 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"
|
26 | }));
|
27 | }
|
28 | const ForwardRef = React.forwardRef(MapPinIcon);
|
29 | module.exports = ForwardRef; |
\ | No newline at end of file |