I have a v-data-table like this one:
<div id="app">
<v-app id="inspire">
<v-data-table
:headers="headers"
:items="desserts"
:items-per-page="5"
class="elevation-1"
>
<template v-slot:item.iron>
<v-icon @click.native="getDocument">mdi-download</v-icon>
</template>
</v-data-table>
</v-app>
</div>
but whenever I move the mouse over the download icon it doesn't change its style from pointer to hand but I don't know why. How can I fix this issue?