Utilities

Direction Provider

Wraps your app to provide global reading direction.

Features

    Enables all primitives to inherit global reading direction.

Installation

Install the component from your command line.

npm install @radix-ui/react-direction

Anatomy

Import the component.

import { DirectionProvider } from '@radix-ui/react-direction';
export default () => <DirectionProvider />;

API Reference

DirectionProvider

When creating localized apps that require right-to-left (RTL) reading direction, you need to wrap your application with the DirectionProvider component to ensure all of the primitives adjust their behavior based on the dir prop.

PropTypeDefault
dir
enum
No default value

Example

Use the direction provider.

import { DirectionProvider } from '@radix-ui/react-direction';
export default () => (
<DirectionProvider dir="rtl">{/* your app */}</DirectionProvider>
);