Button

Bidirectionality

Buttons support right-to-left (RTL) languages. Buttons with Icons are reversed when the direction theme variable is set to rtl. A subset of Icons that convey directionality will be reversed.

<div dir="rtl">
  <ThemeProvider theme={{ direction: 'rtl' }}>
    <Button iconStart={<IconBackspace />}>قم بعمل ما</Button>
  </ThemeProvider>
</div>