1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

feat: change standard strategy icon (#617)

This commit is contained in:
Youssef Khedher 2022-01-20 09:40:17 +01:00 committed by GitHub
parent cacf13c297
commit 2937bcc5c1

View File

@ -1,7 +1,7 @@
import LocationOnIcon from '@material-ui/icons/LocationOn';
import PeopleIcon from '@material-ui/icons/People';
import LanguageIcon from '@material-ui/icons/Language';
import MapIcon from '@material-ui/icons/Map';
import PowerSettingsNewIcon from '@material-ui/icons/PowerSettingsNew';
import RolloutIcon from '../component/common/RolloutIcon/RolloutIcon';
const nameMapping = {
@ -67,6 +67,6 @@ export const getFeatureStrategyIcon = strategyName => {
case 'applicationHostname':
return LocationOnIcon;
default:
return MapIcon;
return PowerSettingsNewIcon;
}
};