import { WithThemeProps } from '../../../Common/theming'; import { IllustrationName } from '../../../Common/theming/illustrations'; export interface UpEntityViewProps extends WithThemeProps { title: string; icon?: IllustrationName; informations: { key: string; value: string; }[]; } export interface UpEntityViewState { }