import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconGithub = forwardRef((props, ref) => { return ( ); }); IconGithub.displayName = 'IconGithub'; export {IconGithub};