@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 987 B
JavaScript
import * as React from "react";
function Brush01Icon({
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: "M9 11.222L12.778 15m-4.803 5.975C6.608 22.342 4 22 2 22c1.025-2-.342-4.608 1.025-5.975a3.5 3.5 0 014.95 4.95zm3.947-5.05l9.137-9.868a2.204 2.204 0 00-3.116-3.116L8.075 12.08c-.51.472-.765.708-.913.96a2 2 0 00-.038 1.967c.139.257.385.503.876.994.491.492.737.737.994.876a2 2 0 001.968-.038c.251-.148.487-.403.96-.913z"
}));
}
const ForwardRef = React.forwardRef(Brush01Icon);
export default ForwardRef;