UNPKG

@easyx.ai/dumi-theme-easyxai

Version:

@easyx.ai/dumi-theme-easyxai 是为 dumi2 打造的一款文档站主题包,提供了更加美观、易用的研发与阅读体验

18 lines (17 loc) 518 B
import { CSSProperties } from 'react'; import type { ThemeMode } from 'antd-style'; declare const defaultOptions: { label: string; icon: import("react/jsx-runtime").JSX.Element; value: string; }[]; interface ThemeSwitchProps { value: ThemeMode; onChange: (value: ThemeMode) => void; options?: typeof defaultOptions; className?: string; style?: CSSProperties; title?: string; } declare const _default: import("react").NamedExoticComponent<ThemeSwitchProps>; export default _default;