UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

31 lines 1.02 kB
const React = require("react"); const { forwardRef } = require("react"); const PlotOfLandIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M17 8.357c0 3.673-4 7.5-5 7.5s-5-3.827-5-7.5C7 5.398 9.239 3 12 3s5 2.398 5 5.357Z", opacity: 0.4 }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 8, r: 2.143, opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M17.556 15h.83a2 2 0 0 1 1.875 1.305l.741 2A2 2 0 0 1 19.127 21H12M6.444 15h-.83a2 2 0 0 0-1.875 1.305l-.741 2A2 2 0 0 0 4.874 21H12" })); const ForwardRef = forwardRef(PlotOfLandIcon); module.exports = ForwardRef;