From 4efba328a6e56bdbb0fd0b3ef081f20008404e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Sibiril?= <81782+aureliensibiril@users.noreply.github.com> Date: Thu, 28 May 2026 23:44:47 +0200 Subject: [PATCH] Add Cursor third-party logo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Register the Cursor brand mark so the connector renders in the access-review provider picker. Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com> --- packages/ui/src/Atoms/ThirdParties/Cursor.tsx | 16 ++++++++++++++++ .../ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx | 2 ++ packages/ui/src/Atoms/ThirdParties/index.ts | 1 + 3 files changed, 19 insertions(+) create mode 100644 packages/ui/src/Atoms/ThirdParties/Cursor.tsx diff --git a/packages/ui/src/Atoms/ThirdParties/Cursor.tsx b/packages/ui/src/Atoms/ThirdParties/Cursor.tsx new file mode 100644 index 000000000..52fe014bf --- /dev/null +++ b/packages/ui/src/Atoms/ThirdParties/Cursor.tsx @@ -0,0 +1,16 @@ +import type { ComponentProps } from "react"; + +export function Cursor(props: ComponentProps<"svg">) { + return ( + + + + ); +} diff --git a/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx b/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx index ff304bfe2..178a08b1a 100644 --- a/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx +++ b/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx @@ -20,6 +20,7 @@ import { Bitbucket } from "./Bitbucket"; import { Brex } from "./Brex"; import { ClickUp } from "./ClickUp"; import { Cloudflare } from "./Cloudflare"; +import { Cursor } from "./Cursor"; import { DocuSign } from "./DocuSign"; import { Figma } from "./Figma"; import { GitHub } from "./GitHub"; @@ -51,6 +52,7 @@ const thirdParties: Record>> = { BREX: Brex, CLICKUP: ClickUp, CLOUDFLARE: Cloudflare, + CURSOR: Cursor, DOCUSIGN: DocuSign, FIGMA: Figma, GITHUB: GitHub, diff --git a/packages/ui/src/Atoms/ThirdParties/index.ts b/packages/ui/src/Atoms/ThirdParties/index.ts index c1f433fc1..78c5bf0be 100644 --- a/packages/ui/src/Atoms/ThirdParties/index.ts +++ b/packages/ui/src/Atoms/ThirdParties/index.ts @@ -4,6 +4,7 @@ export { Bitbucket } from "./Bitbucket"; export { Brex } from "./Brex"; export { ClickUp } from "./ClickUp"; export { Cloudflare } from "./Cloudflare"; +export { Cursor } from "./Cursor"; export { DocuSign } from "./DocuSign"; export { Figma } from "./Figma"; export { GitHub } from "./GitHub";