Add image on ribbon

How to add png image on ribbon in react Babylon JS. On below code

    <ribbon
        name="sphere1"
        pathArray={[vectors]}
        closeArray={true}
        closePath={true}
        useVertexColors={true}
        enablePointerMoveEvents={true}
      >
        <Html name="html" center occlude={false}>
          {
            <div
              style={{
                backgroundColor: 'white',
                borderRadius: '5px',
                border: '3px solid red',
                padding: '8px',
              }}
            >
              Text
            </div>
          }
        </Html>
      </ribbon>

You can add images to any kind of mesh by utilizing textures: Getting Started - Chapter 2 - Texture | Babylon.js Documentation (babylonjs.com)