@nomercyicons/react
Version:
36 lines • 1.04 kB
JavaScript
const React = require("react");
function GarageSharpIcon({
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("circle", {
cx: 15,
cy: 13,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 9,
cy: 13,
r: 1
}), /*#__PURE__*/React.createElement("path", {
d: "M8.33 7.5l-.66 2h8.66l-.66-2z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 2H2v20h20V2zm-3 16.5h-2v-2H7v2H5v-7.31L6.89 5.5H17.1l1.9 5.69v7.31z"
}));
}
const ForwardRef = React.forwardRef(GarageSharpIcon);
module.exports = ForwardRef;