this repo has no description
1// RIP to ThemeDarkIcon ????-2025
2// <Cynthia> Failed to remap "ThemeDarkIcon" in "discord/components/common/index"
3// <NotNite> bro are you fucking kidding me
4// <NotNite> that's literally the icon we use for the update banner
5
6import React from "@moonlight-mod/wp/react";
7import icons from "@moonlight-mod/wp/common_icons";
8import type { IconProps } from "@moonlight-mod/types/coreExtensions/common";
9
10export default function ThemeDarkIcon(props?: IconProps) {
11 const parsed = icons.parseProps(props);
12
13 return (
14 <svg
15 aria-hidden="true"
16 role="img"
17 xmlns="http://www.w3.org/2000/svg"
18 width={parsed.width}
19 height={parsed.height}
20 fill="none"
21 viewBox="0 0 24 24"
22 >
23 <path
24 fill={parsed.fill}
25 className={parsed.className}
26 d="M20.52 18.96c.32-.4-.01-.96-.52-.96A11 11 0 0 1 9.77 2.94c.31-.78-.3-1.68-1.1-1.43a11 11 0 1 0 11.85 17.45Z"
27 />
28
29 <path
30 fill={parsed.fill}
31 className={parsed.className}
32 d="m17.73 9.27-.76-2.02a.5.5 0 0 0-.94 0l-.76 2.02-2.02.76a.5.5 0 0 0 0 .94l2.02.76.76 2.02a.5.5 0 0 0 .94 0l.76-2.02 2.02-.76a.5.5 0 0 0 0-.94l-2.02-.76ZM19.73 2.62l.45 1.2 1.2.45c.21.08.21.38 0 .46l-1.2.45-.45 1.2a.25.25 0 0 1-.46 0l-.45-1.2-1.2-.45a.25.25 0 0 1 0-.46l1.2-.45.45-1.2a.25.25 0 0 1 .46 0Z"
33 />
34 </svg>
35 );
36}