| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | * |
| 7 | * @flow |
| 8 | */ |
| 9 | |
| 10 | import * as React from 'react'; |
| 11 | |
| 12 | import styles from './ReactLogo.css'; |
| 13 | |
| 14 | type Props = { |
| 15 | className?: string, |
| 16 | }; |
| 17 | |
| 18 | export default function ReactLogo({className}: Props): React.Node { |
| 19 | return ( |
| 20 | <svg |
| 21 | xmlns="http://www.w3.org/2000/svg" |
| 22 | className={`${styles.ReactLogo} ${className || ''}`} |
| 23 | viewBox="-11.5 -10.23174 23 20.46348"> |
| 24 | <circle cx="0" cy="0" r="2.05" fill="currentColor" /> |
| 25 | <g stroke="currentColor" strokeWidth="1" fill="none"> |
| 26 | <ellipse rx="11" ry="4.2" /> |
| 27 | <ellipse rx="11" ry="4.2" transform="rotate(60)" /> |
| 28 | <ellipse rx="11" ry="4.2" transform="rotate(120)" /> |
| 29 | </g> |
| 30 | </svg> |
| 31 | ); |
| 32 | } |