Files
react.dev/src/components/Logo.tsx
Matt Carroll 855ce2373d Upgrade to React 19, Next 15.1 and enable React Compiler (#6996)
Co-authored-by: Sebastian Markbåge <sebastian@calyptus.eu>
Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
Co-authored-by: eps1lon <sebastian.silbermann@vercel.com>
2025-01-13 08:48:01 -08:00

24 lines
628 B
TypeScript

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
import type {SVGProps} from 'react';
export function Logo(props: SVGProps<SVGSVGElement>) {
return (
<svg
width="100%"
height="100%"
viewBox="-10.5 -9.45 21 18.9"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}>
<circle cx="0" cy="0" r="2" fill="currentColor" />
<g stroke="currentColor" strokeWidth="1" fill="none">
<ellipse rx="10" ry="4.5" />
<ellipse rx="10" ry="4.5" transform="rotate(60)" />
<ellipse rx="10" ry="4.5" transform="rotate(120)" />
</g>
</svg>
);
}