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