Hello,
is there any option to change the icon image size to be more than 56px?

    Hi szymondomagala ,

    The icon image is limited to only a max width of 100% so that it won't overflow out of the button.

    You can use a custom CSS to disable the max width.
    Copy and paste this into your WordPress' Additional CSS setting.

    .buttonizer .buttonizer-button img {
    	max-width: none !important;
    }

    Let me know if this works for you! 😁

    9 months later