cal.pub0.org/packages/ui/components/top-banner/TopBanner.tsx

52 lines
1.7 KiB
TypeScript

import classNames from "classnames";
import { noop } from "lodash";
import type { ReactNode } from "react";
import { X, AlertTriangle, Info } from "@calcom/ui/components/icon";
export type TopBannerProps = {
text: string;
variant?: keyof typeof variantClassName;
actions?: ReactNode;
onClose?: () => void;
};
const variantClassName = {
default: "bg-gradient-primary",
warning: "bg-orange-400",
error: "bg-red-400",
};
export function TopBanner(props: TopBannerProps) {
const { variant = "default", text, actions, onClose } = props;
return (
<div
data-testid="banner"
className={classNames(
"flex min-h-[40px] w-full items-start justify-between gap-8 py-2 px-4 text-center lg:items-center",
variantClassName[variant]
)}>
<div className="flex flex-1 flex-col items-start justify-center gap-2 p-1 lg:flex-row lg:items-center">
<p className="text-emphasis flex flex-col items-start justify-center gap-2 text-left font-sans text-sm font-medium leading-4 lg:flex-row lg:items-center">
{variant === "error" && (
<AlertTriangle className="text-emphasis h-4 w-4 stroke-[2.5px]" aria-hidden="true" />
)}
{variant === "warning" && (
<Info className="text-emphasis h-4 w-4 stroke-[2.5px]" aria-hidden="true" />
)}
{text}
</p>
{actions && <div className="text-sm font-medium">{actions}</div>}
</div>
{typeof onClose === "function" && (
<button
type="button"
onClick={noop}
className="hover:bg-gray-20 text-muted flex items-center rounded-lg p-1.5 text-sm">
<X className="text-emphasis h-4 w-4" />
</button>
)}
</div>
);
}