forked from github/plane
5916d6e749
* fix: cycle and module sidebar scroll * style: date picker theming * style: workspace slug spacing * fix: app sidebar z-index * fix: favorite cycle mutation * fix: cycle modal on error close * feat: cycle view context * style: active cycle stats scroll * fix: active cycle favorite mutation * feat: import export banner * feat: cycle sidebar date picker logic updated * fix: NaN in progress percentage fix * fix: tooltip fix * style: empty state for active cycle * style: cycle badge width fix , all cycle empty state fix and cycle icon size fix
20 lines
802 B
TypeScript
20 lines
802 B
TypeScript
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>
|
|
<div className="flex items-center gap-3 rounded-[10px] border border-brand-accent/75 bg-brand-accent/5 p-4 text-sm text-brand-base">
|
|
<ExclamationIcon height={24} width={24} className="fill-current text-brand-base" />
|
|
<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>
|
|
);
|