'How to change the cursor to a pointer when hovering over a table row on Wix Velo

I am adding some custom code to my wix site using the velo editor.

I have a table with and the rows have a click event.

export function table1_rowSelect_1(event) {
    let rowData = event.rowData;
    wixLocation.to('/' + rowData._id);
}

I wanit is so then when the user hovers either into the table or over a row than the mouse cursor changes to a pointer. However I am stuggling to find a way to achive this and I haven't been able to find anything online to solve this.

Thanks



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source