import { Theme } from './interfaces' export const SET_COSMO_THEME = '@@cosmo-ui/SET_COSMO_THEME' export interface SetCosmoThemeAction { type: '@@cosmo-ui/SET_COSMO_THEME' theme: Theme } export const setTheme = (theme: Theme): SetCosmoThemeAction => ({ type: SET_COSMO_THEME, theme })