UNPKG

@astraicons/react

Version:

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

22 lines 1.24 kB
const React = require("react"); const { forwardRef } = require("react"); const Building2Icon = ({ 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", { fillRule: "evenodd", d: "M10.333 2.25c-.598 0-1.083.485-1.083 1.083v1.185l-3.78-1.35A.352.352 0 0 0 5 3.5v16.75H3a.75.75 0 0 0 0 1.5h18a.75.75 0 0 0 0-1.5h-2v-9.431a4 4 0 0 0-2.655-3.767l-1.595-.57V3.333c0-.598-.485-1.083-1.083-1.083zm2.917 3.696V3.75h-2.5V5q0 .026-.002.053zM9.25 17v3.25h1.5V17a.25.25 0 0 1 .25-.25h2a.25.25 0 0 1 .25.25v3.25h1.5V17A1.75 1.75 0 0 0 13 15.25h-2A1.75 1.75 0 0 0 9.25 17m-1-8A.75.75 0 0 1 9 8.25h1a.75.75 0 0 1 0 1.5H9A.75.75 0 0 1 8.25 9M9 12.25a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5zM13.25 9a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75m.75 3.25a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5z", clipRule: "evenodd" })); const ForwardRef = forwardRef(Building2Icon); module.exports = ForwardRef;