@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.33 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const PlotOfLandIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M6.444 14.25a.75.75 0 0 1 0 1.5h-.83c-.523 0-.99.325-1.172.815l-.741 2a1.25 1.25 0 0 0 1.172 1.685h14.254a1.25 1.25 0 0 0 1.172-1.685l-.742-2a1.25 1.25 0 0 0-1.171-.815h-.83a.75.75 0 0 1 0-1.5h.83c1.15 0 2.18.716 2.579 1.795l.74 2a2.75 2.75 0 0 1-2.578 3.705H4.873a2.75 2.75 0 0 1-2.578-3.705l.74-2a2.75 2.75 0 0 1 2.58-1.795z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12 2.25c3.223 0 5.75 2.784 5.75 6.107 0 2.084-1.12 4.124-2.288 5.594a12 12 0 0 1-1.788 1.834c-.28.227-.557.42-.813.559-.23.125-.54.263-.861.263s-.632-.138-.861-.263a5.6 5.6 0 0 1-.813-.559 12 12 0 0 1-1.788-1.834c-1.168-1.47-2.288-3.51-2.288-5.594C6.25 5.034 8.776 2.25 12 2.25m0 3.607a2.143 2.143 0 1 0 0 4.286 2.143 2.143 0 0 0 0-4.286",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(PlotOfLandIcon);
export default ForwardRef;