plane/web/components/ui/integration-and-import-export-banner.tsx
Prateek Shourya 37bf465fcd
style: update border across workspace and project settings. (#2669)
* style: update border across workspace and project settings.

* update border width
2023-11-07 13:12:05 +05:30

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 py-3.5 border-b border-custom-border-100">
<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>
);