@uva-glass/component-library
Version:
React components UvA
14 lines (13 loc) • 597 B
TypeScript
import { UISizeVariant } from 'types/UserInterface';
export interface EmptyStateDataDisplayProps {
/** The main text to display. */
label: string;
/** The sub-text to display. */
paragraph?: string;
/** The colors of the wrapper and icon background are inverted. */
invertColors?: boolean;
/** The display variant. */
variant?: UISizeVariant;
}
/** Represents a component to indicate an empty state. */
export declare function EmptyStateDataDisplay({ label, paragraph, invertColors, variant, }: EmptyStateDataDisplayProps): import("react/jsx-runtime").JSX.Element;