export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export type DataState = 'done' | 'loading' | 'error'; export type ColorTypes = 'primary' | 'secondary' | 'warning' | 'danger' | 'success' | 'info'; export type ObjMap = { [K in S]: T }; export type AnyFct = () => any; export type NavItem = { onClick: AnyFct, children: JSX.Element | string };