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

feature(helm): move helm charts inside advance deployments (create from manifest) [EE-5999] (#10395)

This commit is contained in:
Prabhat Khera 2023-10-09 11:20:44 +13:00 committed by GitHub
parent 9885694df6
commit b468070945
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 877 additions and 388 deletions

View file

@ -8,7 +8,7 @@ export interface Props extends IconProps {
size?: BadgeSize;
}
export function BadgeIcon({ icon, size = '3xl' }: Props) {
export function BadgeIcon({ icon, size = '3xl', iconClass }: Props) {
const sizeClasses = iconSizeToClasses(size);
return (
<div
@ -22,7 +22,7 @@ export function BadgeIcon({ icon, size = '3xl' }: Props) {
`
)}
>
<Icon icon={icon} className="!flex" />
<Icon icon={icon} className={clsx('!flex', iconClass)} />
</div>
);
}