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