1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-08 15:25:22 +02:00

feat(icons): add more svg icons and other tweaks [EE-3721] (#7270)

This commit is contained in:
Matt Hook 2022-07-20 10:50:30 +12:00 committed by GitHub
parent 05357ecce5
commit 23b9baa059
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
45 changed files with 240 additions and 20 deletions

View file

@ -8,7 +8,8 @@ export function buildOption<T extends number | string>(
label: string,
description: string,
value: T,
feature?: FeatureId
feature?: FeatureId,
featherIcon?: boolean
): BoxSelectorOption<T> {
return { id, icon, label, description, value, feature };
return { id, icon, label, description, value, feature, featherIcon };
}

View file

@ -1,5 +1,5 @@
import { FeatureId } from '@/portainer/feature-flags/enums';
import Microsoft from '@/assets/ico/microsoft.svg?c';
import Microsoft from '@/assets/ico/vendor/microsoft.svg?c';
import Google from '@/assets/ico/vendor/google.svg?c';
import Github from '@/assets/ico/vendor/github.svg?c';
import Custom from '@/assets/ico/custom.svg?c';

View file

@ -1,5 +1,5 @@
import { FeatureId } from '@/portainer/feature-flags/enums';
import Microsoft from '@/assets/ico/microsoft.svg?c';
import Microsoft from '@/assets/ico/vendor/microsoft.svg?c';
import Ldap from '@/assets/ico/ldap.svg?c';
import Oauth from '@/assets/ico/oauth.svg?c';