* reorganize folder structure * move folders from merge * fix import issue * run format * update configs
17 lines
563 B
XML
17 lines
563 B
XML
export default function AnthropicLogo(props: React.SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="16"
|
|
height="16"
|
|
viewBox="0 0 16 16"
|
|
{...props}
|
|
>
|
|
<title>Anthropic Logo</title>
|
|
<path
|
|
d="M6.89062 2.66699L11.2705 13.6533H8.82129L7.92578 11.3457H3.34473L2.44824 13.6533H0L4.37988 2.66699H6.89062ZM11.6201 2.66699L16 13.6533H13.5977L9.21777 2.66699H11.6201ZM4.13672 9.30566H7.13379L5.63477 5.44434L4.13672 9.30566Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|