Add Anthropic third-party logo

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-05-28 22:04:01 +02:00
parent 83b48333d8
commit e663993882
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import type { ComponentProps } from "react";
export function Anthropic(props: ComponentProps<"svg">) {
return (
<svg
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5528h7.0052l1.3693 3.5528h3.7442L10.5363 3.541Zm-.3712 10.2231 2.2914-5.9456 2.2914 5.9456Z"
fill="#D97757"
/>
</svg>
);
}

View File

@@ -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<string, FC<ComponentProps<"svg">>> = {
ANTHROPIC: Anthropic,
ASANA: Asana,
BITBUCKET: Bitbucket,
BREX: Brex,

View File

@@ -1,3 +1,4 @@
export { Anthropic } from "./Anthropic";
export { Asana } from "./Asana";
export { Bitbucket } from "./Bitbucket";
export { Brex } from "./Brex";