import {ForwardRefRenderFunction,forwardRef,createElement} from 'react'; import QrcodePrintOutlinedSvg from './../svgr/QrcodePrintOutlined' import {IconProps,IconComponent} from '../types' const QrcodePrintOutlined: ForwardRefRenderFunction = (props, ref) => { return createElement(IconComponent, Object.assign({}, props, { ref, component: QrcodePrintOutlinedSvg })); }; QrcodePrintOutlined.displayName = 'QrcodePrintOutlined'; export default forwardRef(QrcodePrintOutlined);