I'm just starting on a Vue project that uses Vuetify and I am attempting to render some icons with v-icon
.
In my component, I have this code:
<template>
<div>
<v-icon>domain<v-icon>
<v-icon>credit_card_outline</v-icon>
</div>
</template>
The rendering of the domain
icon comes in just fine. However, the rendering of the credit_card_outline
is rendered with a height of 45px but a width of like 216px
It's almost like it's rendering space for the actual text as well... It works correct for a number of icons (playlist_add works for example), but for a number of icons it doesn't....
What could possibly be causing this bug?