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