import React, { FC, SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; } export const EmptyIcon: FC & SVGRProps> = ({ title, titleId, ...props }) => ( {title ? {title} : null} );