struct CartItemsTip: Tip {
    var title: Text {
        Text("Click here to see what's in your cart")
    }
    
    var message: Text? {
        Text("You can edit/remove the items from your cart")
    }
    
    var image: Image? {
        Image(systemName: "cart")
    }
    
    var options: [TipOption] {
        [ MaxDisplayCount(2) ]
    }
}