1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 06:49:40 +02:00

feat(edge): hide FDO features behind a flag [EE-5128] (#8600)

This commit is contained in:
Chaim Lev-Ari 2023-03-07 18:45:39 +02:00 committed by GitHub
parent 8345d1471e
commit 01ea9afe33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 59 additions and 23 deletions

View file

@ -19,10 +19,10 @@ export function TextTip({
children,
}: PropsWithChildren<Props>) {
return (
<p className={clsx('small inline-flex items-center gap-1', className)}>
<div className={clsx('small inline-flex items-center gap-1', className)}>
<Icon icon={icon} mode={getMode(color)} className="shrink-0" />
<span className="text-muted">{children}</span>
</p>
</div>
);
}