import type { ReactNode } from "react"; function Placeholder({ icon, title, description, children, }: { icon?: ReactNode; title?: ReactNode | string; description?: ReactNode | string; children?: ReactNode; }) { return (
{icon && (
{icon}
)}

{title}

{description && (

{description}

)}
{children}
); } export { Placeholder };