mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
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<Props> = ({
|
|
title,
|
|
description,
|
|
image,
|
|
primaryButton,
|
|
secondaryButton,
|
|
disabled = false,
|
|
}) => (
|
|
<div className={`flex h-full w-full items-center justify-center`}>
|
|
<div className="flex w-full flex-col items-center text-center">
|
|
<Image src={image} className="w-52 sm:w-60" alt={primaryButton?.text || "button image"} />
|
|
<h6 className="mb-3 mt-6 text-xl font-semibold sm:mt-8">{title}</h6>
|
|
{description && <p className="mb-7 px-5 text-custom-text-300 sm:mb-8">{description}</p>}
|
|
<div className="flex items-center gap-4">
|
|
{primaryButton && (
|
|
<Button
|
|
variant="primary"
|
|
prependIcon={primaryButton.icon}
|
|
onClick={primaryButton.onClick}
|
|
disabled={disabled}
|
|
>
|
|
{primaryButton.text}
|
|
</Button>
|
|
)}
|
|
{secondaryButton}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|