17 lines
609 B
TypeScript
17 lines
609 B
TypeScript
interface EmptyStateProps {
|
|
icon?: string;
|
|
title: string;
|
|
description?: string;
|
|
action?: React.ReactNode;
|
|
}
|
|
|
|
export function EmptyState({ icon = "📋", title, description, action }: EmptyStateProps) {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center gap-3 py-16 text-center">
|
|
<span className="text-5xl" aria-hidden="true">{icon}</span>
|
|
<h3 className="text-base font-semibold text-slate-700">{title}</h3>
|
|
{description && <p className="text-sm text-slate-500 max-w-xs">{description}</p>}
|
|
{action && <div className="mt-2">{action}</div>}
|
|
</div>
|
|
);
|
|
} |