Also Is there anyway I can change from
Also, Is there anyway I can change from mui to antdesign?
configProviderProps prop. This prop allows you to pass in custom configurations to the Ant Design's ConfigProvider (https://ant.design/components/config-provider). rtl (right-to-left) by adding the following code to your App.tsx file:configProviderProps prop in the Refine API References (https://refine.dev/docs/2.xx.xx/api-references/components/refine-config).configProviderPropsconfigProviderPropsrtlconst App: React.FC = () => (
<Refine
...
configProviderProps={{
direction: "rtl",
}}
/>
);