UNPKG

720 BTypeScriptView Raw
1import * as React from 'react';
2export declare enum EmptyStateVariant {
3 'xs' = "xs",
4 small = "small",
5 large = "large",
6 'xl' = "xl",
7 full = "full"
8}
9export interface EmptyStateProps extends React.HTMLProps<HTMLDivElement> {
10 /** Additional classes added to the EmptyState */
11 className?: string;
12 /** Content rendered inside the EmptyState */
13 children: React.ReactNode;
14 /** Modifies EmptyState max-width */
15 variant?: 'xs' | 'small' | 'large' | 'xl' | 'full';
16 /** Cause component to consume the available height of its container */
17 isFullHeight?: boolean;
18}
19export declare const EmptyState: React.FunctionComponent<EmptyStateProps>;
20//# sourceMappingURL=EmptyState.d.ts.map
\No newline at end of file