34 lines
1019 B
TypeScript
34 lines
1019 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
|
||
|
|
import { cn } from '@/lib/utils';
|
||
|
|
|
||
|
|
interface EmptyStateProps {
|
||
|
|
icon?: React.ReactNode;
|
||
|
|
title: string;
|
||
|
|
body?: React.ReactNode;
|
||
|
|
actions?: React.ReactNode;
|
||
|
|
className?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function EmptyState({ icon, title, body, actions, className }: EmptyStateProps) {
|
||
|
|
return (
|
||
|
|
<div
|
||
|
|
className={cn(
|
||
|
|
'flex flex-col items-center justify-center gap-3 rounded-lg border border-dashed border-slate-200 bg-white px-6 py-12 text-center',
|
||
|
|
className,
|
||
|
|
)}
|
||
|
|
>
|
||
|
|
{icon ? (
|
||
|
|
<div className="flex h-14 w-14 items-center justify-center rounded-full bg-gradient-brand-soft text-brand">
|
||
|
|
{icon}
|
||
|
|
</div>
|
||
|
|
) : null}
|
||
|
|
<div className="text-base font-semibold text-foreground">{title}</div>
|
||
|
|
{body ? <div className="max-w-md text-sm text-muted-foreground">{body}</div> : null}
|
||
|
|
{actions ? (
|
||
|
|
<div className="mt-2 flex flex-wrap items-center justify-center gap-2">{actions}</div>
|
||
|
|
) : null}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|