forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@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 { PrimaryButton } from "components/ui";
|
|
|
|
type Props = {
|
|
title: string;
|
|
description?: React.ReactNode;
|
|
image: any;
|
|
primaryButton?: {
|
|
icon?: any;
|
|
text: string;
|
|
onClick: () => void;
|
|
};
|
|
secondaryButton?: React.ReactNode;
|
|
isFullScreen?: boolean;
|
|
};
|
|
|
|
export const EmptyState: React.FC<Props> = ({
|
|
title,
|
|
description,
|
|
image,
|
|
primaryButton,
|
|
secondaryButton,
|
|
isFullScreen = true,
|
|
}) => (
|
|
<div
|
|
className={`h-full w-full mx-auto grid place-items-center p-8 ${
|
|
isFullScreen ? "md:w-4/5 lg:w-3/5" : ""
|
|
}`}
|
|
>
|
|
<div className="text-center flex flex-col items-center w-full">
|
|
<Image src={image} className="w-52 sm:w-60" alt={primaryButton?.text} />
|
|
<h6 className="text-xl font-semibold mt-6 sm:mt-8 mb-3">{title}</h6>
|
|
{description && <p className="text-custom-text-300 mb-7 sm:mb-8">{description}</p>}
|
|
<div className="flex items-center gap-4">
|
|
{primaryButton && (
|
|
<PrimaryButton className="flex items-center gap-1.5" onClick={primaryButton.onClick}>
|
|
{primaryButton.icon}
|
|
{primaryButton.text}
|
|
</PrimaryButton>
|
|
)}
|
|
{secondaryButton}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|