Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 519x | import { SvgIconProps } from "@mui/material";
const DarkModeIcon = ({
height = 24,
width = 24,
fill = "#292727",
}: SvgIconProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.504 16C14.608 16.0258 12.7783 15.3027 11.4123 13.9876C10.0463 12.6725 9.25418 10.8716 9.208 8.976C9.20836 8.04587 9.39709 7.12545 9.76282 6.27025C10.1286 5.41504 10.6637 4.64277 11.336 4C9.34295 4.19679 7.4925 5.12176 6.13894 6.59785C4.78537 8.07393 4.02379 9.9974 4 12C4.04831 14.1651 4.95276 16.2227 6.51523 17.7222C8.0777 19.2217 10.1708 20.0408 12.336 20C13.9484 20.0141 15.5303 19.5607 16.8905 18.6946C18.2506 17.8286 19.3307 16.587 20 15.12C18.9244 15.6955 17.7239 15.9977 16.504 16Z"
stroke={fill}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default DarkModeIcon;
|