@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.03 kB
JavaScript
const React = require("react");
function PaintPourIcon({
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: "M16 11H2m8-7L8 2m6 20H2m20-6a2 2 0 11-4 0c0-1.105 2-3 2-3s2 1.895 2 3zM9 3l6.868 6.869c.396.396.594.594.668.822a1 1 0 010 .618c-.074.228-.272.426-.668.822l-4.606 4.606c-.792.792-1.188 1.188-1.644 1.337a2 2 0 01-1.236 0c-.457-.149-.853-.545-1.645-1.337l-3.475-3.474c-.792-.792-1.188-1.188-1.336-1.645a2 2 0 010-1.236c.148-.457.544-.853 1.336-1.645L9 3z"
}));
}
const ForwardRef = React.forwardRef(PaintPourIcon);
module.exports = ForwardRef;