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