Skip to content

Commit

Permalink
Adding new platform icons (#10351)
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncid authored Jan 31, 2025
1 parent e85005b commit de66c7c
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 0 deletions.
31 changes: 31 additions & 0 deletions sparkle/src/logo/platforms/Fireworks.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import type { SVGProps } from "react";
import * as React from "react";
const SvgFireworks = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<g clipPath="url(#Fireworks_svg__a)">
<path
fill="#4A1DBD"
d="M0 4a4 4 0 0 1 4-4h16a4 4 0 0 1 4 4v16a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z"
/>
<g fill="#fff" clipPath="url(#Fireworks_svg__b)">
<path d="M11.986 13.04a1.366 1.366 0 0 1-1.265-.85L8.161 6H9.66l2.335 5.662L14.328 6h1.498l-2.575 6.192c-.213.514-.71.848-1.265.848ZM15.326 15.998a1.368 1.368 0 0 1-1.263-.843 1.387 1.387 0 0 1 .286-1.507l4.662-4.782.582 1.39-4.268 4.37 6.084-.033.582 1.39-6.663.017-.003-.002h.001ZM2 15.981l.582-1.39 6.084.034-4.267-4.371.582-1.391 4.662 4.782c.39.399.502.99.286 1.506a1.368 1.368 0 0 1-1.263.844l-6.664-.016-.002.002Z" />
</g>
</g>
<defs>
<clipPath id="Fireworks_svg__a">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
<clipPath id="Fireworks_svg__b">
<path fill="#fff" d="M2 6h20v10H2z" />
</clipPath>
</defs>
</svg>
);
export default SvgFireworks;
25 changes: 25 additions & 0 deletions sparkle/src/logo/platforms/Togetherai.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import type { SVGProps } from "react";
import * as React from "react";
const SvgTogetherai = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<g clipPath="url(#Togetherai_svg__a)">
<path
fill="#0F6FFF"
d="M0 4a4 4 0 0 1 4-4h16a4 4 0 0 1 4 4v16a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4Z"
/>
</g>
<defs>
<clipPath id="Togetherai_svg__a">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
export default SvgTogetherai;
2 changes: 2 additions & 0 deletions sparkle/src/logo/platforms/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export { default as CohereLogo } from "./Cohere";
export { default as ConfluenceLogo } from "./Confluence";
export { default as DeepseekLogo } from "./Deepseek";
export { default as DriveLogo } from "./Drive";
export { default as FireworksLogo } from "./Fireworks";
export { default as GeminiLogo } from "./Gemini";
export { default as GithubLogo } from "./Github";
export { default as GithubWhiteLogo } from "./GithubWhite";
Expand Down Expand Up @@ -34,5 +35,6 @@ export { default as ReplicateLogo } from "./Replicate";
export { default as SalesforceLogo } from "./Salesforce";
export { default as SlackLogo } from "./Slack";
export { default as SnowflakeLogo } from "./Snowflake";
export { default as TogetheraiLogo } from "./Togetherai";
export { default as ZapierLogo } from "./Zapier";
export { default as ZendeskLogo } from "./Zendesk";
18 changes: 18 additions & 0 deletions sparkle/src/logo/src/platforms/Fireworks.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions sparkle/src/logo/src/platforms/Togetherai.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit de66c7c

Please sign in to comment.