mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
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>
24 lines
628 B
TypeScript
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>
|
|
);
|
|
}
|