2022-12-21 11:28:51 +03:00

21 lines
424 B
JavaScript

/* eslint-disable unicorn/filename-case */
import { ConfigProvider } from 'antd';
import ru_RU from 'antd/lib/locale/ru_RU';
export default function AntdConfig({ children }) {
return (
<ConfigProvider
locale={ru_RU}
theme={{
token: {
colorPrimary: process.env.NEXT_PUBLIC_COLOR_PRIMARY,
borderRadius: 2,
},
}}
>
{children}
</ConfigProvider>
);
}