From e663993882547d2cc07a025a818eb569f83b7d31 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 22:04:01 +0200 Subject: [PATCH] Add Anthropic third-party logo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com> --- packages/ui/src/Atoms/ThirdParties/Anthropic.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/Anthropic.tsx diff --git a/packages/ui/src/Atoms/ThirdParties/Anthropic.tsx b/packages/ui/src/Atoms/ThirdParties/Anthropic.tsx new file mode 100644 index 000000000..51d714288 --- /dev/null +++ b/packages/ui/src/Atoms/ThirdParties/Anthropic.tsx @@ -0,0 +1,16 @@ +import type { ComponentProps } from "react"; + +export function Anthropic(props: ComponentProps<"svg">) { + return ( + + + + ); +} diff --git a/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx b/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx index d506b08fa..ff304bfe2 100644 --- a/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx +++ b/packages/ui/src/Atoms/ThirdParties/ThirdPartyLogo.tsx @@ -14,6 +14,7 @@ import type { ComponentProps, FC } from "react"; +import { Anthropic } from "./Anthropic"; import { Asana } from "./Asana"; import { Bitbucket } from "./Bitbucket"; import { Brex } from "./Brex"; @@ -44,6 +45,7 @@ import { Tally } from "./Tally"; import { Vercel } from "./Vercel"; const thirdParties: Record>> = { + ANTHROPIC: Anthropic, ASANA: Asana, BITBUCKET: Bitbucket, BREX: Brex, diff --git a/packages/ui/src/Atoms/ThirdParties/index.ts b/packages/ui/src/Atoms/ThirdParties/index.ts index 642b426c6..c1f433fc1 100644 --- a/packages/ui/src/Atoms/ThirdParties/index.ts +++ b/packages/ui/src/Atoms/ThirdParties/index.ts @@ -1,3 +1,4 @@ +export { Anthropic } from "./Anthropic"; export { Asana } from "./Asana"; export { Bitbucket } from "./Bitbucket"; export { Brex } from "./Brex";