@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
32 lines • 2.12 kB
JavaScript
const React = require("react");
function FieldIconAddress({
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: "M9.256 8.337c0-1.483 1.229-2.686 2.744-2.686 1.515 0 2.744 1.203 2.744 2.686 0 1.484-1.229 2.686-2.744 2.686-1.515 0-2.744-1.202-2.744-2.686ZM12 7.117c-.689 0-1.247.546-1.247 1.22 0 .675.558 1.221 1.247 1.221.689 0 1.247-.546 1.247-1.22 0-.675-.558-1.222-1.247-1.222Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.555 18.672c1.653-1.274 6.43-5.353 6.43-9.98a7.302 7.302 0 0 0-2.046-5.085A6.884 6.884 0 0 0 12 1.5a6.884 6.884 0 0 0-4.939 2.107 7.302 7.302 0 0 0-2.046 5.085c0 4.627 4.777 8.706 6.43 9.98.33.254.78.254 1.11 0Zm2.655-4.634c-1.114 1.397-2.381 2.52-3.21 3.19-.829-.67-2.096-1.793-3.21-3.19-1.317-1.652-2.278-3.51-2.278-5.346 0-1.542.596-3.007 1.634-4.076A5.372 5.372 0 0 1 12 2.966c1.43 0 2.818.584 3.854 1.65a5.854 5.854 0 0 1 1.634 4.076c0 1.835-.961 3.694-2.278 5.346Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.412 15.419c-.854 0-1.582.604-1.723 1.428l-.665 3.663c-.177 1.042.644 1.99 1.723 1.99h16.506c1.08 0 1.9-.948 1.723-1.99l-.665-3.663a1.736 1.736 0 0 0-1.723-1.428H18.44a.74.74 0 0 0-.748.732.74.74 0 0 0 .748.733h1.148c.122 0 .226.086.246.204l.666 3.663a.246.246 0 0 1-.247.284H3.747a.246.246 0 0 1-.246-.284l.665-3.663a.248.248 0 0 1 .246-.204H5.56a.74.74 0 0 0 .748-.733.74.74 0 0 0-.748-.732H4.412Z"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconAddress);
module.exports = ForwardRef;