@spaced-out/ui-design-system
Version:
Sense UI components library
21 lines • 691 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
type ClassNames = Readonly<{
wrapper?: string;
image?: string;
title?: string;
description?: string;
children?: string;
}>;
export interface EmptyStateProps {
classNames?: ClassNames;
children?: React.ReactNode;
imageVariant?: 'calendar' | 'data' | 'file' | 'message' | 'upload' | 'chart' | 'analytics' | 'voice';
title?: React.ReactNode;
description?: React.ReactNode;
customImageUrl?: string;
testId?: string;
}
export declare const EmptyState: Flow.AbstractComponent<EmptyStateProps, HTMLDivElement>;
export {};
//# sourceMappingURL=EmptyState.d.ts.map