import PropTypes from 'prop-types'; import { SVGProps } from 'react'; interface SVGRProps { title?: string; titleId?: string; size?: string; } const ResetGame = ({ title, titleId, ...props }: SVGProps & SVGRProps) => { return ( {title ? {title} : null} ); }; ResetGame.propTypes = { title: PropTypes.string, }; export default ResetGame;