@nomercyicons/react
Version:
26 lines • 1.29 kB
JavaScript
const React = require("react");
function WbIridescentRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 15h12c.55 0 1-.45 1-1v-3.95c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1V14c0 .55.45 1 1 1zm5-13v1.05c0 .55.45.95 1 .95s1-.4 1-.95V2c0-.55-.45-1-1-1s-1 .45-1 1zm7.34 2.3l-.38.38a.996.996 0 101.41 1.41l.38-.38a.996.996 0 10-1.41-1.41zM13 22v-.96c0-.55-.45-1-1-1s-1 .45-1 1V22c0 .55.45 1 1 1s1-.45 1-1zm6.74-3.61l-.39-.39a.996.996 0 10-1.41 1.41l.38.39c.39.39 1.02.39 1.41 0l.01-.01a.984.984 0 000-1.4zM4.25 5.71l.39.39a.996.996 0 101.41-1.41l-.39-.39a.996.996 0 00-1.41 0c-.38.39-.38 1.03 0 1.41zm1.42 14.08l.38-.38A.996.996 0 104.64 18l-.38.38a.996.996 0 101.41 1.41z"
}));
}
const ForwardRef = React.forwardRef(WbIridescentRoundedIcon);
module.exports = ForwardRef;