mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import createCache from '@emotion/cache'
|
|
import stylisRTLPlugin from 'stylis-plugin-rtl'
|
|
import { prefixer } from 'stylis'
|
|
|
|
export const createEmotionCache = () => {
|
|
return createCache({
|
|
key: 'css',
|
|
prepend: true,
|
|
stylisPlugins: [prefixer, stylisRTLPlugin],
|
|
})
|
|
}
|