import * as React from "react"; type Props = { size?: number; fill?: string; className?: string; }; function GithubLogo({ size = 34, fill = "#FFF", className }: Props) { return ( ); } export default GithubLogo;