JPG Images of Plotly Marker Symbols

Hi all,

I am wondering if there is a way to get the actual images of the symbols used for the markers for the traces. I am trying to create a dropdown of the symbols available, but would like to show my users the image of the symbol rather than the name of it (ex: showing the diamond symbol rather than displaying the text ‘diamond’).

Is there any repo or website that contains downloadable images of the symbols?

My plan is to create an array of objects like so:

[
  {
     name: 'diamond',
     image: 'link to image of the diamond symbol'
  },
  ...
]

Any help is appreciated, thanks!