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>
19 lines
670 B
TypeScript
19 lines
670 B
TypeScript
import { AlertCircle } from "lucide-react";
|
|
|
|
type Props = {
|
|
bannerName: string;
|
|
description?: string;
|
|
};
|
|
|
|
export const IntegrationAndImportExportBanner: React.FC<Props> = ({ bannerName, description }) => (
|
|
<div className="flex items-start gap-3 border-b border-custom-border-100 py-3.5">
|
|
<h3 className="text-xl font-medium">{bannerName}</h3>
|
|
{description && (
|
|
<div className="flex items-center gap-3 rounded-[10px] border border-custom-primary/75 bg-custom-primary/5 p-4 text-sm text-custom-text-100">
|
|
<AlertCircle className="h-6 w-6 text-custom-text-100" />
|
|
<p className="leading-5">{description}</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|