11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import createCache from "@emotion/cache";
|
|
import { prefixer } from "stylis";
|
|
import rtlPlugin from "stylis-plugin-rtl";
|
|
|
|
const rtlCache = createCache({
|
|
key: "muirtl",
|
|
stylisPlugins: [prefixer, rtlPlugin],
|
|
});
|
|
|
|
export default rtlCache;
|