Allowing one to customize the color of an expansion panel icon would be immensely beneficial for devs who don't want to use the default boring gray. It would also add valuable customizability to Vuetify.
Being able to change the icon color would be beneficial to users as it would enhance the visibility of the icons and make the component less bland.
<v-expansion-panel>
<v-expansion-panel-content
v-for="(item,i) in 5"
:key="i"
expand-icon="mdi-menu-down"
----->> expand-icon-color="primary"
>
<div slot="header">Item</div>
<v-card>
<v-card-text class="grey lighten-3">...</v-card-text>
</v-card>
</v-expansion-panel-content>
</v-expansion-panel>
You can use the actions slot for that: https://codepen.io/anon/pen/MPodqV?editors=1000
Thanks, would've been helpful to see that in the docs.
Issue moved to vuetifyjs/vuetifyjs.com #627 via ZenHub
Example Added via #5869
Most helpful comment
Thanks, would've been helpful to see that in the docs.