Add Anthropic third-party logo
Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
16
packages/ui/src/Atoms/ThirdParties/Anthropic.tsx
Normal file
16
packages/ui/src/Atoms/ThirdParties/Anthropic.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
import type { ComponentProps, FC } from "react";
|
import type { ComponentProps, FC } from "react";
|
||||||
|
|
||||||
|
import { Anthropic } from "./Anthropic";
|
||||||
import { Asana } from "./Asana";
|
import { Asana } from "./Asana";
|
||||||
import { Bitbucket } from "./Bitbucket";
|
import { Bitbucket } from "./Bitbucket";
|
||||||
import { Brex } from "./Brex";
|
import { Brex } from "./Brex";
|
||||||
@@ -44,6 +45,7 @@ import { Tally } from "./Tally";
|
|||||||
import { Vercel } from "./Vercel";
|
import { Vercel } from "./Vercel";
|
||||||
|
|
||||||
const thirdParties: Record<string, FC<ComponentProps<"svg">>> = {
|
const thirdParties: Record<string, FC<ComponentProps<"svg">>> = {
|
||||||
|
ANTHROPIC: Anthropic,
|
||||||
ASANA: Asana,
|
ASANA: Asana,
|
||||||
BITBUCKET: Bitbucket,
|
BITBUCKET: Bitbucket,
|
||||||
BREX: Brex,
|
BREX: Brex,
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
export { Anthropic } from "./Anthropic";
|
||||||
export { Asana } from "./Asana";
|
export { Asana } from "./Asana";
|
||||||
export { Bitbucket } from "./Bitbucket";
|
export { Bitbucket } from "./Bitbucket";
|
||||||
export { Brex } from "./Brex";
|
export { Brex } from "./Brex";
|
||||||
|
|||||||
Reference in New Issue
Block a user