@morphemeicons/react
Version:
Morpheme Icons React
31 lines (29 loc) • 1.05 kB
JavaScript
const React = require("react");
function PaletteIcon({
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: "M2 12c0 5.523 4.477 10 10 10a3 3 0 003-3v-.5c0-.464 0-.697.026-.892a3 3 0 012.582-2.582c.195-.026.428-.026.892-.026h.5a3 3 0 003-3c0-5.523-4.477-10-10-10S2 6.477 2 12z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M7 13a1 1 0 100-2 1 1 0 000 2zM16 9a1 1 0 100-2 1 1 0 000 2zM10 8a1 1 0 100-2 1 1 0 000 2z"
}));
}
const ForwardRef = React.forwardRef(PaletteIcon);
module.exports = ForwardRef;