UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 816 B
const React = require("react"); function Building08Icon({ title, titleId, ...props }, svgRef) { return /*#__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: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3 21h18M6 18v-8m4 8v-8m4 8v-8m4 8v-8m2-3l-7.576-4.735c-.154-.096-.23-.144-.313-.163a.5.5 0 00-.222 0c-.082.019-.16.067-.313.163L4 7h16z" })); } const ForwardRef = React.forwardRef(Building08Icon); module.exports = ForwardRef;