'How to insert images only by url in CKEditor5 with react

I'm trying to insert images solely by url. In CKEditor 5 there is this feature but I'm not sure how can I make the img icon-button open modal to enter url.

this is what I have for now inside CKEditor component config

 config={{
      toolbar: ['imageUpload'],
      image: {
        // ...
        upload: {
          panel: {
            items: ['insertImageViaUrl'],
          },
        },
      },
    }}

As shown in image below I can upload via url after clicking dropdown menu but more precisely I would like to swap image upload functionality with upload by url functionality from dropdown

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source