2
0
Files
bot/packages/forge/blocks/openRouter/logo.tsx
2024-03-07 14:26:48 +01:00

24 lines
843 B
TypeScript

import React from 'react'
export const OpenRouterLogo = (props: React.SVGProps<SVGSVGElement>) => (
<svg viewBox="0 0 512 512" fill="#71717A" stroke="#71717A" {...props}>
<g clipPath="url(#clip0_205_3)">
<path
d="M3 248.945C18 248.945 76 236 106 219C136 202 136 202 198 158C276.497 102.293 332 120.945 423 120.945"
strokeWidth="90"
></path>
<path d="M511 121.5L357.25 210.268L357.25 32.7324L511 121.5Z"></path>
<path
d="M0 249C15 249 73 261.945 103 278.945C133 295.945 133 295.945 195 339.945C273.497 395.652 329 377 420 377"
strokeWidth="90"
></path>
<path d="M508 376.445L354.25 287.678L354.25 465.213L508 376.445Z"></path>
</g>
<defs>
<clipPath id="clip0_205_3">
<rect width="512" height="512"></rect>
</clipPath>
</defs>
</svg>
)