const MyRank = ({style, color, rank, height}) => { const digits = (rank && !isNaN(rank)) ? rank.toString().length : 0; const fontSize = 70 - (digits * 8); return ( {/* */} Your Rank is {/* */} {rank} Check My Rank Thought of the day Dreams are nothing without plans work hard for your goal. );} export default MyRank;