@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.09 kB
JavaScript
import * as React from "react";
function PuzzlePiece01Icon({
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: "M7.5 4.5a2.5 2.5 0 015 0V6h1c1.398 0 2.097 0 2.648.228a3 3 0 011.624 1.624C18 8.403 18 9.102 18 10.5h1.5a2.5 2.5 0 010 5H18v1.7c0 1.68 0 2.52-.327 3.162a3 3 0 01-1.311 1.311C15.72 22 14.88 22 13.2 22h-.7v-1.75a2.25 2.25 0 00-4.5 0V22H6.8c-1.68 0-2.52 0-3.162-.327a3 3 0 01-1.311-1.311C2 19.72 2 18.88 2 17.2v-1.7h1.5a2.5 2.5 0 000-5H2c0-1.398 0-2.097.228-2.648a3 3 0 011.624-1.624C4.403 6 5.102 6 6.5 6h1V4.5z"
}));
}
const ForwardRef = React.forwardRef(PuzzlePiece01Icon);
export default ForwardRef;