///
import { IconType } from 'react-icons/lib/esm';
export interface IApp {
name: string;
url: string;
Icon?: IconType | React.FunctionComponent>;
}
export type AppSwitcherProps = {
currentApp: IApp;
apps: IApp[];
spacing?: string;
width?: string;
menuBg?: string;
className?: string;
};