Va-icon fill #1882
Unanswered
OlegFromOmsk
asked this question in
Q&A
Va-icon fill
#1882
Replies: 2 comments
-
Hi. You can extend Icons Config. createApp(App)
.use(VuesticPlugin, {
icons: createIconsConfig({
fonts: [
{
name: '{icon}-fill',
resolve: ({ icon } => ({
content: 'icon',
class: 'material-symbols-outlined material-symbols-filled'
}))
}
]
})
})
.mount('#app') <style>
.material-symbols-filled {
font-variation-settings:
'FILL' 1,
'wght' 400,
'GRAD' 0,
'opsz' 48
}
</style> Then any icon with -fill suffix will apply <va-icon name="clock-fill" /> |
Beta Was this translation helpful? Give feedback.
0 replies
-
I have tried do this, but it doesn't work. Icon is filled
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello
How can I use
fill
option from material icons for va-icon?Beta Was this translation helpful? Give feedback.
All reactions