useTheme.d.ts 192 B

1234
  1. import type { ThemeConfig } from '../context';
  2. export default function useTheme(theme?: ThemeConfig, parentTheme?: ThemeConfig, config?: {
  3. prefixCls?: string;
  4. }): ThemeConfig | undefined;