@nomercyicons/react
Version:
28 lines • 954 B
JavaScript
const React = require("react");
function BedroomParentSharpIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.5 12h11v2h-11zM7.25 8.5h4v2h-4zM12.75 8.5h4v2h-4z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 2H2v20h20V2zm-3 15h-1.5v-1.5h-11V17H5v-5l.65-.55V7H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h5.35v4.45L19 12v5z"
}));
}
const ForwardRef = React.forwardRef(BedroomParentSharpIcon);
module.exports = ForwardRef;