Right-To-Left in Blazor Button Component

18 Jun 20261 minute to read

Button component has RTL support. This can be achieved by setting EnableRtl as true.

The following example illustrates how to enable right-to-left support in Button component.

@using Syncfusion.Blazor.Buttons

<SfButton IconCss="e-icons e-setting-icon" EnableRtl="true">Settings</SfButton>

<style>
    .e-setting-icon::before {
        content: '\e880';
    }
</style>
Right to Left in Blazor Button