import React from 'react'; import { Inbox } from 'lucide-react'; const EmptyState = ({ icon: Icon = Inbox, title, description, actionLabel, onAction, actionIcon: ActionIcon, }) => { return (

{title}

{description && (

{description}

)} {actionLabel && onAction && ( )}
); }; export default EmptyState;