Homeassistant lovelace picture element and shelly bulb duo

Hi
I added a shelly wifi bulb to my homeassistant
It is working
I added an icon in my lovelace configuration

- title: Jardin
    panel: true
    icon: mdi:tree
    cards:
     - type: picture-elements
       image: "local/jardin.png"
       elements:
         - type: icon
           icon: mdi:lightbulb
           entity:  light.shellybulbduo_3494546b062c
           style:
             top: 50%
             left: 25%

But i don’t want the window with the shelly bulb slider to be opened when i click on the shelly icon
i just want the bulb to switch on or off when i click
how can i do that ?
thanks

i find the way to do :slight_smile:

cards:
     - type: picture-elements
       image: "local/jardin.png"
       elements:
         - type: state-icon
           entity:  light.shellybulbduo_3494546b062c
           #icon: mdi:lightbulb
           tap_action:
             action: toggle
           style:
             color: black
             top: 50%
             left: 25%
           state:
             - value: 'on'
               icon: mdi:lightbulb-on
               tap_action:
                 action: call-service
                 service: light.turn_on
                 service_data:
                   entity_id: light.shellybulbduo_3494546b062c
                   brightness_value: 255
             - value: 'off'
               icon: mdi:lightbulb-off
               tap_action:
                 action: call-service
                 service: light.turn_on
                 service_data:
                   entity_id: light.shellybulbduo_3494546b062c
                   brightness_value: 0