Interface ThemeSelectPanelProps

interface ThemeSelectPanelProps {
    darkMode?: boolean;
    disabled?: boolean;
    onSelectTheme: ((docTheme) => void);
    selectedTheme: IDocTheme;
    sx?: SxProps<Theme>;
    themes: IDocThemes;
}

Hierarchy

  • HTMLAttributes<HTMLElement>
    • ThemeSelectPanelProps

Properties

darkMode?: boolean
disabled?: boolean
onSelectTheme: ((docTheme) => void)

Type declaration

    • (docTheme): void
    • Parameters

      Returns void

selectedTheme: IDocTheme
sx?: SxProps<Theme>

MUI SX props

themes: IDocThemes