optimall-icons
Version:
Biblioteca de ícones do Optimall
31 lines • 2.13 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const DarkmodeOffIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "darkmode, off",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11 21.9c0 .5.4.9.9.9s.9-.4.9-.9v-1.5c0-.5-.4-.9-.9-.9s-.9.4-.9.9v1.5Zm7.965-2.03h.005-.01.005Zm-.635-.26a.935.935 0 0 0 .635.26.891.891 0 0 0 .635-.26.9.9 0 0 0 0-1.27l-1.06-1.06a.9.9 0 0 0-1.27 0 .9.9 0 0 0 0 1.27l1.06 1.06Zm-13.505.26h.005-.01.005Zm-.635-.26a.936.936 0 0 0 .635.26.89.89 0 0 0 .635-.26l1.06-1.06a.9.9 0 0 0 0-1.27.9.9 0 0 0-1.27 0l-1.06 1.06a.9.9 0 0 0 0 1.27ZM20.4 12.8h1.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-1.5c-.5 0-.9.4-.9.9s.4.9.9.9Zm-18.5 0h1.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9H1.9c-.5 0-.9.4-.9.9s.4.9.9.9Zm16.005-6.01h.005-.01.005Zm-.635-.26a.935.935 0 0 0 .635.26.891.891 0 0 0 .635-.26l1.06-1.06a.9.9 0 0 0 0-1.27.9.9 0 0 0-1.27 0l-1.06 1.06a.9.9 0 0 0 0 1.27Zm-11.385.26h.005-.01.005Zm-.635-.26a.935.935 0 0 0 .635.26.891.891 0 0 0 .635-.26.9.9 0 0 0 0-1.27L5.46 4.2a.9.9 0 0 0-1.27 0 .9.9 0 0 0 0 1.27l1.06 1.06ZM11 3.4c0 .5.4.9.9.9s.9-.4.9-.9V1.9c0-.5-.4-.9-.9-.9s-.9.4-.9.9v1.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 11.9c0 3.25 2.65 5.9 5.9 5.9 3.25 0 5.9-2.65 5.9-5.9 0-3.25-2.65-5.9-5.9-5.9A5.91 5.91 0 0 0 6 11.9Zm1.8 0c0-2.26 1.84-4.1 4.1-4.1S16 9.64 16 11.9 14.16 16 11.9 16s-4.1-1.84-4.1-4.1Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default DarkmodeOffIcon;