Icon in list-item does not appear

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:
Bildschirmfoto 2021-10-26 um 13.28.48

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.