Swamy Thota
Swamy Thota

Reputation: 35

How to change default icons in mule while developing custom connector?

As I am working with the latest devKit (version 3.9.0). @Icons option is not available in the same. So is there any other way to change default icons in mule while developing custom connector?

Upvotes: 1

Views: 907

Answers (2)

Swamy Thota
Swamy Thota

Reputation: 35

Created two folders inside the icons folder i.e theme.light and theme.classic and each should have as per following:

  • theme.light:
    • connectorname-connector-large.png (pixel: 26x26)
    • connectorname-connector-small.png (pixel: 16x16)
  • theme.classic:
    • connectorname-connector-large.png (pixel: 48x32)
    • connectorname-connector-small.png (pixel: 24x16)

It worked for me.

Upvotes: 1

mario martinez
mario martinez

Reputation: 297

Check in the package explorer in studio for a folder call "icons". Inside this folder you will find 2 images.

DevKit will use icons with the following syntax:

Small: {connectorName}-connector-24x16.png
Large: {connectorName}-connector-48x32.png

NOTE: check the size of your images

After this you can re install the connector.

Upvotes: 0

Related Questions