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