@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
31 lines • 943 B
JavaScript
const React = require("react");
function FieldIconLocation({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "none",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 1 1 16 0Z"
}), /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.8,
d: "M12 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconLocation);
module.exports = ForwardRef;