import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconGithub = React.forwardRef(function IconGithub( props: Props, ref: React.Ref ) { return ( ); }); IconGithub.displayName = 'IconGithub'; export {IconGithub};