Below code snippet solved it for me
$teams = Get-Team
$count = 0
foreach ($team in $teams) {
$owner = Get-TeamUser -GroupId $team.GroupId -Role Owner
if ($owner.User -eq "<UPN of your user>") {
$team.DisplayName
$count++
}
} "found $count teams where the target user is owner"