UNPKG

dw-neit-style

Version:

css-in-js solution for application combine with antd v5 token system and emotion

6 lines (5 loc) 302 B
import { type FC } from 'react'; import type { ThemeProviderProps } from './type'; type AntdProviderProps = Pick<ThemeProviderProps<any>, 'theme' | 'prefixCls' | 'getStaticInstance' | 'children' | 'staticInstanceConfig'>; declare const AntdProvider: FC<AntdProviderProps>; export default AntdProvider;