2023-03-15 05:31:54 +00:00
|
|
|
import React from "react";
|
2023-07-12 06:15:45 +00:00
|
|
|
|
2023-03-15 05:31:54 +00:00
|
|
|
import Image from "next/image";
|
|
|
|
|
2023-03-22 11:28:32 +00:00
|
|
|
// ui
|
|
|
|
import { PrimaryButton } from "components/ui";
|
2023-03-15 05:31:54 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
title: string;
|
|
|
|
description: React.ReactNode | string;
|
2023-07-12 06:15:45 +00:00
|
|
|
image: any;
|
2023-07-19 09:14:04 +00:00
|
|
|
buttonText?: string;
|
2023-07-12 06:15:45 +00:00
|
|
|
buttonIcon?: any;
|
2023-07-23 09:41:28 +00:00
|
|
|
secondaryButton?: React.ReactNode;
|
2023-07-12 06:15:45 +00:00
|
|
|
onClick?: () => void;
|
|
|
|
isFullScreen?: boolean;
|
2023-03-15 05:31:54 +00:00
|
|
|
};
|
|
|
|
|
2023-07-12 06:15:45 +00:00
|
|
|
export const EmptyState: React.FC<Props> = ({
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
image,
|
|
|
|
onClick,
|
|
|
|
buttonText,
|
|
|
|
buttonIcon,
|
2023-07-23 09:41:28 +00:00
|
|
|
secondaryButton,
|
2023-07-12 06:15:45 +00:00
|
|
|
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={buttonText} />
|
|
|
|
<h6 className="text-xl font-semibold mt-6 sm:mt-8 mb-3">{title}</h6>
|
|
|
|
<p className="text-custom-text-300 mb-7 sm:mb-8">{description}</p>
|
2023-07-23 09:41:28 +00:00
|
|
|
<div className="flex items-center gap-4">
|
|
|
|
{buttonText && (
|
|
|
|
<PrimaryButton className="flex items-center gap-1.5" onClick={onClick}>
|
|
|
|
{buttonIcon}
|
|
|
|
{buttonText}
|
|
|
|
</PrimaryButton>
|
|
|
|
)}
|
|
|
|
{secondaryButton}
|
|
|
|
</div>
|
2023-03-15 05:31:54 +00:00
|
|
|
</div>
|
2023-07-12 06:15:45 +00:00
|
|
|
</div>
|
|
|
|
);
|