Add Datadog 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-29 15:04:47 +02:00
parent 3aafdad7f5
commit e7b6990ea6
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import type { ComponentProps } from "react";
export function Datadog(props: ComponentProps<"svg">) {
return (
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M20.4 3 3.6 8.6l3.5 3.4-2 2.2 2.5 2.6-1.1 3.2 4.4-3.6 5.9-.4L20.4 3zm-7 11.6-2.2-1.4 1.5-2.6 2.5-.6-1.8 4.6z"
fill="#632CA6"
/>
</svg>
);
}

View File

@@ -21,6 +21,7 @@ import { Brex } from "./Brex";
import { ClickUp } from "./ClickUp";
import { Cloudflare } from "./Cloudflare";
import { Cursor } from "./Cursor";
import { Datadog } from "./Datadog";
import { DocuSign } from "./DocuSign";
import { Figma } from "./Figma";
import { GitHub } from "./GitHub";
@@ -56,6 +57,7 @@ const thirdParties: Record<string, FC<ComponentProps<"svg">>> = {
CLICKUP: ClickUp,
CLOUDFLARE: Cloudflare,
CURSOR: Cursor,
DATADOG: Datadog,
DOCUSIGN: DocuSign,
FIGMA: Figma,
GITHUB: GitHub,

View File

@@ -5,6 +5,7 @@ export { Brex } from "./Brex";
export { ClickUp } from "./ClickUp";
export { Cloudflare } from "./Cloudflare";
export { Cursor } from "./Cursor";
export { Datadog } from "./Datadog";
export { DocuSign } from "./DocuSign";
export { Figma } from "./Figma";
export { GitHub } from "./GitHub";