44 lines
1.5 KiB
TypeScript
44 lines
1.5 KiB
TypeScript
import type { ReactNode } from "react";
|
|
import React from "react";
|
|
import type { IconType } from "react-icons";
|
|
|
|
import type { SVGComponent } from "@calcom/types/SVGComponent";
|
|
|
|
import { Button } from "../../components/button";
|
|
|
|
export function EmptyScreen({
|
|
Icon,
|
|
headline,
|
|
description,
|
|
buttonText,
|
|
buttonOnClick,
|
|
buttonRaw,
|
|
}: {
|
|
Icon: SVGComponent | IconType;
|
|
headline: string;
|
|
description: string | React.ReactElement;
|
|
buttonText?: string;
|
|
buttonOnClick?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
buttonRaw?: ReactNode; // Used incase you want to provide your own button.
|
|
}) {
|
|
return (
|
|
<>
|
|
<div
|
|
data-testid="empty-screen"
|
|
className="min-h-80 flex w-full flex-col items-center justify-center rounded-md border border-dashed p-7 lg:p-20">
|
|
<div className="flex h-[72px] w-[72px] items-center justify-center rounded-full bg-gray-200 dark:bg-white">
|
|
<Icon className="inline-block h-10 w-10 stroke-[1.3px] dark:bg-gray-900 dark:text-gray-600" />
|
|
</div>
|
|
<div className="flex max-w-[420px] flex-col items-center">
|
|
<h2 className="text-semibold font-cal mt-6 text-center text-xl dark:text-gray-300">{headline}</h2>
|
|
<div className="mt-3 mb-8 text-center text-sm font-normal leading-6 text-gray-700 dark:text-gray-300">
|
|
{description}
|
|
</div>
|
|
{buttonOnClick && buttonText && <Button onClick={(e) => buttonOnClick(e)}>{buttonText}</Button>}
|
|
{buttonRaw}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|