import { h } from 'vue'; import { IconProps, IconSet } from 'vuetify'; import { VLigatureIcon } from 'vuetify/components'; export const outlined: IconSet = { component: (props: IconProps) => { return h(VLigatureIcon, { ...props, class: 'material-symbols-outlined' }); }, };