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