@up-group-ui/react-controls
Version:
Up shared react controls
14 lines (13 loc) • 453 B
TypeScript
/// <reference types="react" />
import { IntentType, WithThemeProps } from '../../../Common/theming/types';
import { IconName } from '../../../Common/theming/icons';
export interface UpPanelProps extends WithThemeProps {
title?: string | JSX.Element;
footer?: string | JSX.Element;
type?: IntentType;
message?: string;
iconName?: IconName | null;
iconSize?: number;
disableAutoIntentIcon?: boolean;
className?: string;
}