@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
30 lines • 1.56 kB
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: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
d: "M12 6.325a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Zm-2.25 3.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.5 10.256c0 4.968-5.18 9.62-7.452 11.319a1.74 1.74 0 0 1-2.096 0C8.679 19.877 3.5 15.224 3.5 10.255c0-2.17.896-4.25 2.49-5.785C7.584 2.937 9.746 2.075 12 2.075s4.416.862 6.01 2.396c1.595 1.534 2.49 3.615 2.49 5.785Zm-1.5 0c0-1.753-.723-3.447-2.03-4.704-1.309-1.26-3.095-1.977-4.97-1.977-1.875 0-3.661.717-4.97 1.977C5.723 6.809 5 8.503 5 10.256c0 1.977 1.045 3.988 2.536 5.818 1.47 1.803 3.226 3.486 4.314 4.299a.248.248 0 0 0 .15.052.248.248 0 0 0 .15-.052c1.088-.813 2.844-2.496 4.314-4.3C17.955 14.245 19 12.234 19 10.257Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconLocation);
module.exports = ForwardRef;