๐๏ธIcons
Ablepro Vuetify is pre-configured with the Svg Sprite
Iconsax
import SvgSprite from '@/components/shared/SvgSprite.vue';
// usage
<SvgSprite name="custom-home" style="width: 20px; height: 20px" />Material Design icons
// if you want to use mdi new icon then add like this
import { mdiHome } from '@mdi/js';
export const icons = {
home: mdiHome,
};Last updated