36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
"use client"
|
|
|
|
import { motion } from "framer-motion"
|
|
import { LucideIcon } from "lucide-react"
|
|
import { Button } from "@/components/ui/button"
|
|
|
|
interface EmptyStateProps {
|
|
icon: LucideIcon
|
|
title: string
|
|
description: string
|
|
actionLabel?: string
|
|
onAction?: () => void
|
|
}
|
|
|
|
export function EmptyState({ icon: Icon, title, description, actionLabel, onAction }: EmptyStateProps) {
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.95 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
transition={{ duration: 0.3 }}
|
|
className="flex flex-col items-center justify-center py-16 text-center"
|
|
>
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-muted">
|
|
<Icon className="h-10 w-10 text-muted-foreground" />
|
|
</div>
|
|
<h3 className="mt-6 text-lg font-semibold">{title}</h3>
|
|
<p className="mt-2 max-w-sm text-sm text-muted-foreground">{description}</p>
|
|
{actionLabel && onAction && (
|
|
<Button onClick={onAction} className="mt-6">
|
|
{actionLabel}
|
|
</Button>
|
|
)}
|
|
</motion.div>
|
|
)
|
|
}
|