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