Styling the_posts_pagination With Font Awesome

You can change the text with the funcion for example.

the_posts_pagination( array(
        'prev_text' => __( '<i class="fa fa-arrow-left"></i>', 'textdomain' ),
        'next_text' => __( '<i class="fa fa-arrow-right"></i>', 'textdomain' ),
    ) );

Use whatever icons you can, I used fa-arrow icons.