UNPKG

@astraicons/react

Version:

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

20 lines 817 B
import * as React from "react"; import { forwardRef } from "react"; const LandIcon = ({ 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: "M8.25 21.75H7A4.75 4.75 0 0 1 2.25 17v-3.25H8q.127-.002.25-.02zM21.75 17A4.75 4.75 0 0 1 17 21.75H9.75V9.5a.25.25 0 0 1 .25-.25h11.75zM8.25 12a.25.25 0 0 1-.25.25H2.25V7A4.75 4.75 0 0 1 7 2.25h1.25zM17 2.25A4.75 4.75 0 0 1 21.75 7v.75H10q-.127.001-.25.02V2.25z" })); const ForwardRef = forwardRef(LandIcon); export default ForwardRef;