import {forwardRef} from 'react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; interface IconLabProps extends SVGIconProps { isSolid?: boolean; } const IconLab = forwardRef(({isSolid, ...props}, ref) => { return ( {isSolid ? ( ) : ( )} ); }); IconLab.displayName = 'IconLab'; export {IconLab};