2
0

Add Together AI block (#1304)

Closes #1253
This commit is contained in:
Baptiste Arnaud
2024-03-01 15:33:22 +01:00
committed by GitHub
parent 275ba1b1c4
commit 648ec08a10
27 changed files with 623 additions and 361 deletions

View File

@ -0,0 +1,18 @@
import React from 'react'
export const TogetherAiLogo = (props: React.SVGProps<SVGSVGElement>) => (
<svg viewBox="0 0 32 32" {...props}>
<g clipPath="url(#clip0_542_18748)">
<rect width="32" height="32" rx="5.64706" fill="#F1EFED" />
<circle cx="22.8233" cy="9.64706" r="5.64706" fill="#D3D1D1" />
<circle cx="22.8233" cy="22.8238" r="5.64706" fill="#D3D1D1" />
<circle cx="9.64706" cy="22.8238" r="5.64706" fill="#D3D1D1" />
<circle cx="9.64706" cy="9.64706" r="5.64706" fill="#0F6FFF" />
</g>
<defs>
<clipPath id="clip0_542_18748">
<rect width="32" height="32" fill="white" />
</clipPath>
</defs>
</svg>
)