I'm facing an issue with the icons in Vuetify not showing properly, for example below is the Vuetify expansion panel. I already tried the solutions in this question vuetify icon not showing, but they didn't work for me. You can see below that the chevron-down icon is showing as $vuetify.icons.expand. I've tried both importing @mdi/font which doesn't do anything for me... here's the code I'm using:
import Vue from 'vue'
import Vuetify from 'vuetify';
import 'vuetify/dist/vuetify.min.css'
// import 'material-design-icons-iconfont/dist/material-design-icons.css'
import '@mdi/font/css/materialdesignicons.css'
Vue.use(Vuetify, {
icons: {
iconfont: 'mdi'
}
});
//expansion panels
Importing material-design-icons-iconfont/dist/material-design-icons.css, changes the icons into some weird icons.
Please let me know what could be the problem and what else I can try!

