UNPKG

react-epic-trails-ds

Version:

A flexible and customizable design system for React, providing pre-built UI components, typography, and themes to enhance web app development.

11 lines (10 loc) 265 B
import { ReactNode } from "react"; type ActionType = "none" | "primary" | "secondary"; export interface EmptyStateProps { message: string; description?: string; label?: string; onClick?: () => any; action?: ActionType; children?: ReactNode; }