Isn't Slimsy supposed to work with Image Cropper?

I’m using Umbraco v 16.3.4 and I’ve installed Slimsy v6.0.4.

I’ve used the Image Cropper as the Image property for an element (the rowItem below) in the backoffice.

When using the media-item attribute in the tag, the code complains that it cannot convert type ImageCropperValue to MediaWithCrops (see the code segment below).

@if (rowItem.Image != null) {

<slimsy-picture media-item="@rowItem.Image" css-class="" alt="@rowItem.Title"></slimsy-picture>

}

Where am I going wrong with this? Have I chosen the wrong property type for my image?

The TagHelper expects the media-item parameter to be a picked media item that then contains a image cropper not the image cropper itself on the content item.
You can have a image cropper on a content type and use Slimsy methods but not the tag helper.