From 2560079b5c4f8e74aff386a661dae96cb4773812 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sat, 1 Nov 2025 19:39:30 +0000 Subject: [PATCH 1/2] Fetch latest cursor logo from svgl for light and dark mode --- components/logos/cursor.tsx | 96 ++++++++++++++++--------------------- 1 file changed, 40 insertions(+), 56 deletions(-) diff --git a/components/logos/cursor.tsx b/components/logos/cursor.tsx index d743c34a..b2f8fa18 100644 --- a/components/logos/cursor.tsx +++ b/components/logos/cursor.tsx @@ -2,63 +2,47 @@ import * as React from 'react' import type { SVGProps } from 'react' const Cursor = (props: SVGProps) => { - const uniqueId = React.useId() - return ( - - {'Cursor'} - - - - - - - - - - - - - - - - - - - - + <> + {/* Light mode version */} + + {'Cursor'} + + + {/* Dark mode version */} + + {'Cursor'} + + + ) } From 0da4bf16446b0a5ff1b053b6bdda2c5dab08b183 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sat, 1 Nov 2025 19:45:29 +0000 Subject: [PATCH 2/2] Fix duplicate icons in agent dropdown --- components/logos/cursor.tsx | 57 +++++++++++-------------------------- 1 file changed, 17 insertions(+), 40 deletions(-) diff --git a/components/logos/cursor.tsx b/components/logos/cursor.tsx index b2f8fa18..37414d5a 100644 --- a/components/logos/cursor.tsx +++ b/components/logos/cursor.tsx @@ -3,46 +3,23 @@ import type { SVGProps } from 'react' const Cursor = (props: SVGProps) => { return ( - <> - {/* Light mode version */} - - {'Cursor'} - - - {/* Dark mode version */} - - {'Cursor'} - - - + + {'Cursor'} + + ) }