The icon in a list-item not appears as described in this article
<k-list-item
text="My Text"
:icon="{
type: 'file',
back: 'black'
}"
/>
The icon in a list-item not appears as described in this article
<k-list-item
text="My Text"
:icon="{
type: 'file',
back: 'black'
}"
/>
Btw. I’m using Kirby 3.5.7.1
What do you get instead? Nothing?
The Item without an icon:
You have to set the image
option to false
:
<k-list-item
text="My Text"
image="false"
:icon="{
type: 'file',
back: 'black'
}"
/>
Thanks. It’s deprecated in Kirby 3.6 btw.