({
width = 18,
height = 18,
className,
}: {
width?: number;
height?: number;
className?: string;
})
| 259 | }; |
| 260 | |
| 261 | function GithubLogo({ |
| 262 | width = 18, |
| 263 | height = 18, |
| 264 | className, |
| 265 | }: { |
| 266 | width?: number; |
| 267 | height?: number; |
| 268 | className?: string; |
| 269 | }) { |
| 270 | return ( |
| 271 | <svg |
| 272 | xmlns="http://www.w3.org/2000/svg" |
| 273 | width={width} |
| 274 | height={height} |
| 275 | fill="currentColor" |
| 276 | viewBox="0 0 24 24" |
| 277 | className={className} |
| 278 | aria-hidden="true" |
| 279 | > |
| 280 | <path d="M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91.58.1.79-.25.79-.56v-2.16c-3.2.7-3.87-1.36-3.87-1.36-.52-1.33-1.28-1.69-1.28-1.69-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.18 1.76 1.18 1.03 1.75 2.69 1.24 3.34.95.1-.74.4-1.24.73-1.53-2.55-.29-5.23-1.28-5.23-5.68 0-1.26.45-2.28 1.18-3.09-.12-.29-.51-1.46.11-3.04 0 0 .96-.31 3.16 1.18.92-.25 1.9-.38 2.87-.39.98.01 1.96.14 2.88.39 2.19-1.49 3.15-1.18 3.15-1.18.63 1.58.23 2.75.12 3.04.74.81 1.18 1.83 1.18 3.09 0 4.41-2.69 5.38-5.25 5.67.42.36.78 1.06.78 2.14v3.18c0 .31.21.67.8.56A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5Z" /> |
| 281 | </svg> |
| 282 | ); |
| 283 | } |
| 284 | |
| 285 | function XLogo() { |
| 286 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected