Icon position in dashboard 2

Hello, I'm trying to position my icon below my label text in my button.
Could someone perhaps help me out with the css?

Welcome to forum.

The CSS (provided you know how to do the css override)

.btn-content-vertical-icon-below .v-btn--block{
    flex-direction: column-reverse;
}
.btn-content-vertical-icon-below .v-btn__prepend{
    margin-inline: unset;
}

thank you so much, kind sir!