import React from "react"; import Image from "next/image"; // ui import { Button } from "@plane/ui"; type Props = { title: string; description?: React.ReactNode; image: any; primaryButton?: { icon?: any; text: string; onClick: () => void; }; secondaryButton?: React.ReactNode; disabled?: boolean; }; export const EmptyState: React.FC = ({ title, description, image, primaryButton, secondaryButton, disabled = false, }) => (
{primaryButton?.text
{title}
{description &&

{description}

}
{primaryButton && ( )} {secondaryButton}
);