React className property exceeds the maximum line length of 120

I have this element:

<div className={`my_container ${theme} ${isSpanishLanguage && 'spanishLanguage'} ${isEnglishLanguage && 'englishLanguage'}`}></div>

And I ge the error that my line is too long. How can I split this line into multiple lines to avoid getting this error ?