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