Theme Option

interface ThemeOption

This interface governs the theme options shown in the Settings Page Component.

theme-option.interface.ts
export interface ThemeOption {
  icon: string;
  nameKey: string;
  value: AvailableTheme;
}

Last updated