Find a string in decentrialized folders

Recently, I needed to find a particular string within a bunch of csv files that were strewn across multiple folders. This command was my google’d solution, but I want to remember it:

find . -iname '*.csv' -exec cat {} \; | grep THING-YOURE-LOOKING-FOR