import { h } from 'vue'; import { IconProps, IconSet } from 'vuetify'; import { VLigatureIcon } from 'vuetify/components'; export const filled: IconSet = { /* v8 ignore start -- @preserve */ component: (props: IconProps) => { return h(VLigatureIcon, { ...props, class: 'material-symbols-outlined material-symbols-filled', }); }, /* v8 ignore stop -- @preserve */ };