Add UpCloud component and integrate into ThirdPartyLogo and index exports

Signed-off-by: Steven4Hooisma <112615049+Steven4Hooisma@users.noreply.github.com>
This commit is contained in:
Steven4Hooisma
2026-07-23 15:11:32 +02:00
committed by Aurélien Sibiril
parent e62e6cce43
commit 9cdc77ba8e
3 changed files with 15 additions and 0 deletions

View File

@@ -77,6 +77,7 @@ import { Square } from "./Square";
import { Supabase } from "./Supabase";
import { Tailscale } from "./Tailscale";
import { Tally } from "./Tally";
import { UpCloud } from "./UpCloud";
import { Vercel } from "./Vercel";
import { Yousign } from "./Yousign";
import { Zendesk } from "./Zendesk";
@@ -142,6 +143,7 @@ const thirdParties: Record<string, FC<ComponentProps<"svg">>> = {
SUPABASE: Supabase,
TAILSCALE: Tailscale,
TALLY: Tally,
UPCLOUD: UpCloud,
VERCEL: Vercel,
YOUSIGN: Yousign,
ZENDESK: Zendesk,

View File

@@ -0,0 +1,12 @@
import type { ComponentProps } from "react";
export function UpCloud(props: ComponentProps<"svg">) {
return (
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
fill="#7B00FF"
d="M22.1155 12.9964a1.8845 1.8845 0 110 3.769H8.6643V11.87h.888v4.0072h12.5849a1.0078 1.0078 0 00.9964-.9964 1.0317 1.0317 0 00-1.0397-.9964H10.397v-.888zm-8.6859-5.7617H8.6643v1.9927h.888V8.1011h3.899a1.0078 1.0078 0 01.9964.9964 1.0653 1.0653 0 01-1.018 1.0397H1.8845a1.8845 1.8845 0 100 3.769h5.8917v-.8881H1.8845a.9964.9964 0 010-1.9928h11.5668a1.8999 1.8999 0 001.8844-1.8845 1.9375 1.9375 0 00-1.9061-1.9061z"
/>
</svg>
);
}

View File

@@ -56,6 +56,7 @@ export { Supabase } from "./Supabase";
export { Tally } from "./Tally";
export { Tailscale } from "./Tailscale";
export { ThirdPartyLogo } from "./ThirdPartyLogo";
export { UpCloud } from "./UpCloud";
export { Vercel } from "./Vercel";
export { Yousign } from "./Yousign";
export { Zendesk } from "./Zendesk";