2023-05-18 13:37:01 +00:00
|
|
|
import { ExclamationIcon } from "components/icons";
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
bannerName: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const IntegrationAndImportExportBanner: React.FC<Props> = ({ bannerName }) => (
|
|
|
|
<div className="flex flex-col items-start gap-3">
|
|
|
|
<h3 className="text-2xl font-semibold">{bannerName}</h3>
|
2023-07-10 07:17:00 +00:00
|
|
|
<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" />
|
2023-05-18 13:37:01 +00:00
|
|
|
<p className="leading-5">
|
|
|
|
Integrations and importers are only available on the cloud version. We plan to open-source
|
|
|
|
our SDKs in the near future so that the community can request or contribute integrations as
|
|
|
|
needed.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|