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