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