forked from github/plane
87abf3ccb1
* style: project settings navigation sidebar added * chore: emoji and image picker close on outside click added * style: project setting general page revamp * style: project setting member page revamp * style: project setting features page revamp * style: project setting state page revamp * style: project setting integrations page revamp * style: project setting estimates page revamp * style: project setting automation page revamp * style: project setting label page revamp * chore: member select improvement for member setting page * chore: toggle switch component improvement * style: project automation setting ui improvement * style: module icon added * style: toggle switch improvement * style: ui and spacing consistency * style: project label setting revamp * style: project state setting ui improvement * chore: integration setting repo select validation * chore: code refactor * fix: build fix
19 lines
719 B
TypeScript
19 lines
719 B
TypeScript
import { ExclamationIcon } from "components/icons";
|
|
|
|
type Props = {
|
|
bannerName: string;
|
|
description?: string;
|
|
};
|
|
|
|
export const IntegrationAndImportExportBanner: React.FC<Props> = ({ bannerName, description }) => (
|
|
<div className="flex flex-col items-start gap-3 py-3.5 border-b border-custom-border-200">
|
|
<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">
|
|
<ExclamationIcon height={24} width={24} className="fill-current text-custom-text-100" />
|
|
<p className="leading-5">{description}</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|