@using Syncfusion.Blazor.Buttons
<SfButton CssClass="btn" IconCss="e-icons e-copy">SfButton>
<style>
.btn {
height: 32px;
width: 32px;
}
.e-copy::before {
content: '\e77b';
}
.e-copy:hover {
background-color: #0067D9;
color: red;
}
.e-btn.e-icon-btn{
padding: initial;
}
style> |
@using Syncfusion.Blazor.Buttons
<SfButton CssClass="e-button-batch-select" IconCss="e-icons e-button-batch-select-icon"></SfButton>
<style>
.e-button-batch-select, .e-button-batch-select:focus, .e-button-batch-select:active {
border-radius: 0;
height: 32px;
width: 32px;
background-color: #007BFF;
}
.e-button-batch-select:hover {
background-color: #0067D9;
color: red;
}
.e-button-batch-select-icon::before {
content: '\e759';
}
.e-button-batch-select-icon {
color: #FFFFFF;
}
.e-button-batch-select:hover .e-button-batch-select-icon {
color: red;
}
</style> |