Progress Button with a big image ?

I wonder if there is a way to place a bit image - like 80 x 50 pixels inside a ProgressButton, and how ?

1 Reply 1 reply marked as answer

SD Saranya Dhayalan Syncfusion Team July 2, 2020 03:43 PM UTC

Hi Yordan,

Good day to you.

We would like to inform that you can place a image inside the progress button using CssClass property. Please check the below code snippet
 
 
@using Syncfusion.Blazor.Buttons 
@using Syncfusion.Blazor.SplitButtons 
 
<SfProgressButton CssClass="e-bit e-danger" Content="Click Me"></SfProgressButton> 
 
<style> 
 
    .e-bit { 
        background-image: url('css/bit.png'); 
        background-repeat: no-repeat; 
        background-position: left -17px bottom -2px; 
    } 
</style> 
 
 
We have prepared a sample for your reference, please refer the sample link below. 
 
 
Please check the above sample and get back to us if you need further assistance on this. 
 
Regards, 
Saranya D 


Marked as answer
Loader.
Up arrow icon