@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 838 B
JavaScript
import * as React from "react";
function Crop02Icon({
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: "M10 6h4.8c1.12 0 1.68 0 2.108.218a2 2 0 01.874.874C18 7.52 18 8.08 18 9.2V14M2 6h4m12 12v4m4-4H9.2c-1.12 0-1.68 0-2.108-.218a2 2 0 01-.874-.874C6 16.48 6 15.92 6 14.8V2"
}));
}
const ForwardRef = React.forwardRef(Crop02Icon);
export default ForwardRef;