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