import { Plus } from "lucide-react"; import { Button } from "@vertesia/ui/core"; interface EmptyInteractionsProps { buttonLabel: string; title: string; onClick: () => void; children: React.ReactNode | React.ReactNode[]; } export function EmptyCollection({ buttonLabel, title, children, onClick }: EmptyInteractionsProps) { return (

{title}

{children}

) }