๐๏ธIcons
Mantis Vuetify is pre-configured with the Ant Design Vue
Ant Design icons
import { PlusOutlined } from "@ant-design/icons-vue";
// usage
<PlusOutlined :style="{ fontSize: '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