"use client"; import React from "react"; import { Inbox } from "lucide-react"; import GlassButton from "./GlassButton"; interface GlassEmptyStateProps { title?: string; message?: string; actionLabel?: string; onAction?: () => void; } export default function GlassEmptyState({ title = "No data yet", message = "There is nothing to display right now.", actionLabel, onAction, }: GlassEmptyStateProps): React.ReactElement { return (
{message}
{actionLabel && onAction && (