import * as React from "react"; import type { FC } from "react"; interface IconProps { size?: number; } export const GitHubIcon: FC = ({ size = 14 }) => ( );