zarm
Version:
基于 React 的移动端UI库
15 lines (14 loc) • 462 B
TypeScript
import type { MountContainer, ScrollContainer } from '../utils/dom';
import type { CssVars } from './cssVars';
import localeCN from './locale/zh_CN';
export declare type Locale = typeof localeCN;
export interface ConfigProviderProps {
prefixCls?: string;
locale?: Locale;
primaryColor?: string;
theme?: 'dark' | 'light';
safeArea?: boolean;
mountContainer?: MountContainer;
scrollContainer?: ScrollContainer;
cssVars?: CssVars;
}