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