import React from 'react'; interface IconGithubProps { color?: string; } export function IconGithub(props: IconGithubProps): React.ReactElement { return ( ); }