Laravel bootstrap bigger pagination icon problem

Laravel is coming up with Tailwind CSS and conflicting with its previous bootstrap framework. As a result, when we are updating the application from an earlier version to the latest it is showing a bigger pagination icon problem. We need to force our system to use the bootstrap feature for pagination. We can do it on AppServiceProvider file.

use Illuminate\Pagination\Paginator; 
Paginator::useBootstrap();