@up-group-ui/react-controls
Version:
Up shared react controls
13 lines (12 loc) • 354 B
TypeScript
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 {
}