UNPKG

@mui/system

Version:

MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.

8 lines 230 B
import * as React from 'react'; interface RtlProviderProps { children?: React.ReactNode; value?: boolean; } declare const RtlProvider: React.FC<RtlProviderProps>; export const useRtl: () => boolean; export default RtlProvider;