8 lines
320 B
TypeScript
8 lines
320 B
TypeScript
/** @jsxImportSource react */
|
|
|
|
export const AnthropicLogo = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg viewBox="0 0 16 16" fill="currentColor" {...props}>
|
|
<path d="M11.54 2H9.09l4.46 12H16L11.54 2ZM4.46 2 0 14h2.5l.9-2.52h4.68L8.99 14h2.5L7.02 2H4.46Zm-.24 7.25 1.52-4.22 1.53 4.22H4.22Z"></path>
|
|
</svg>
|
|
)
|