export interface ThemeSelectorItem {
  id: string;
  title: string;
  onClick: () => void;
  value: string;
  right?: any;
  active: boolean;
}
