@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
14 lines (12 loc) • 333 B
text/typescript
import {
useTheme,
PartialEmotionCanvasTheme,
ContentDirection,
} from '@workday/canvas-kit-react/common';
export const useRTL = (partialTheme?: PartialEmotionCanvasTheme) => {
const theme = useTheme(partialTheme);
const shouldUseRTL = theme.canvas.direction === ContentDirection.RTL;
return {
shouldUseRTL,
};
};