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