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