Hide person name from badge

Hi all, is there a way to hide the name of a person in a badge ?

I try with font size and with name:

elements:
  - type: state-badge
    entity: person.greta
    person-entity-beacon:
      - font-size: 0px

  - type: state-badge
    entity: person.greta
    name: ""

but none of them does work…

Thanks to all !

I found a solution using “color”

  - type: state-badge
    entity: person.greta
    style:
      color: rgba(0,0,0,0)
      top: 45px
      left: 35px

Thanks