@kelvininc/ui-components
Version:
Kelvin UI Components
10 lines (9 loc) • 420 B
TypeScript
import { EIllustrationName } from '../illustration/illustration.types';
export interface IIllustrationMessage {
/** (required) The illustration that will be presented. */
illustration: EIllustrationName;
/** (required) The message header to be displayed below the illustration. */
header: string;
/** (optional) The message description to be displayed below the title. */
description?: string;
}