Skip to content

Commit 1a076a6

Browse files
authored
fix: guild logo light mode (#2089)
1 parent c63ae34 commit 1a076a6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/app/conf/2025/components/sponsors.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ const sponsorGold: Sponsor[] = [
3434
link: "https://www.apollographql.com",
3535
},
3636
{
37-
icon: (props: React.SVGProps<SVGElement>) => <TheGuild {...props} />,
37+
icon: (props: React.SVGProps<SVGElement>) => (
38+
<TheGuild
39+
{...props}
40+
className={clsx(
41+
props.className,
42+
"[&_path]:fill-[#15252D] dark:[&_path]:fill-white",
43+
)}
44+
/>
45+
),
3846
name: "The Guild",
3947
link: "https://the-guild.dev/graphql/hive",
4048
},

0 commit comments

Comments
 (0)