Files
boc/web-v2/src/components/ui/EmptyState.tsx
T

27 lines
755 B
TypeScript

import { cn } from '@/lib/utils'
interface EmptyStateProps {
icon?: React.ReactNode
title: string
description?: string
action?: React.ReactNode
className?: string
}
export function EmptyState({ icon, title, description, action, className }: EmptyStateProps) {
return (
<div className={cn('flex flex-col items-center justify-center py-16 text-center', className)}>
{icon && (
<div className="mb-4 text-text-secondary/40">
{icon}
</div>
)}
<h3 className="text-sm font-medium text-text-primary">{title}</h3>
{description && (
<p className="mt-1 text-sm text-text-secondary max-w-sm">{description}</p>
)}
{action && <div className="mt-4">{action}</div>}
</div>
)
}