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