#11·themes

RTL support

Author: ghostCreated Aug 10, 2023Updated Apr 28, 2026
Labelsrequest

First of all thanks for this amazing library, I can't stop using it its so good! I was just wondering if there's any plan to support RTL. I tried the DirectionProvider and it doesn't work.

bash
'use client'

import { DirectionProvider } from '@radix-ui/react-direction'

type Props = {
  children: React.ReactNode
}

const Direction = (props: Props) => {
  return <DirectionProvider dir='rtl'>{props.children}</DirectionProvider>
}

export default Direction

Thanks!