21 lines
424 B
JavaScript
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>
|
|
);
|
|
}
|