@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
11 lines (10 loc) • 394 B
TypeScript
import React from "react";
import DefaultButton from "../Buttons/DefaultButton";
export interface EmptyStateProps {
children?: React.ReactNode;
title: string;
action?: typeof DefaultButton;
secondaryAction?: typeof DefaultButton;
image: string;
}
export declare const EmptyState: ({ title, children, action, secondaryAction, image, }: EmptyStateProps) => React.JSX.Element;