'How can i resize a prepend-inner-icon in a v-text-field vuetify tag?

I'm just learning Vue.js & Vuetify and I can't change the size of my icon. Can anyone help me, please?

<v-text-field 
    prepend-inner-icon="mdi-magnify"
>
</v-text-field>


Solution 1:[1]

You can put anything you want in that "prepend-inner" emplacement by using slot ( it's an advanced feature in vue)

<v-text-field label="Prepend inner">
   <template v-slot:prepend-inner>
      <v-icon x-large>mdi-magnify</v-icon>
   </template>
</v-text-field>

Sources

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

Source: Stack Overflow

Solution Source
Solution 1 Florent Bouisset