Assigning Different GPIO pin for SPI

Hi, Does anyone knows how to assign the SPI Pin for ESP32 LVGL ? I mean I want my own SPI Pin for this project.

esp32 Wrover
ILI9341 240 x 320
Arduino 1.8 IDE

BR
HS

Solved

Set it LV_USE_TFT_ESPI from lv_conf.h
Set the PIN Assigning from User_Setup.h of TFT_eSPI

lv_conf.h

/Interface for TFT_eSPI/
#define LV_USE_TFT_ESPI 1

User_Setup.h

#define TFT_MISO 12
#define TFT_MOSI 13
#define TFT_SCLK 14
#define TFT_CS 15 // Chip select control pin
#define TFT_DC 26 // Data Command control pin
#define TFT_RST 25 // Reset pin (could connect to RST pin)

Thanks anyway.

BR
HS