@kloudlite/design-system
Version:
A design system for building ambitious products.
13 lines (12 loc) • 410 B
TypeScript
import { ReactNode } from 'react';
import { IButton } from '../atoms/button';
interface IEmptyState {
heading: string;
image?: string;
children: ReactNode;
footer: ReactNode;
action: IButton;
secondaryAction: IButton;
}
export declare const EmptyState: ({ image, heading, children, footer, action, secondaryAction, }: IEmptyState) => import("react/jsx-runtime").JSX.Element;
export {};