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";