From 2f1d7649a7cb46447fa097ce23e947c120b3d665 Mon Sep 17 00:00:00 2001 From: esikkala <esko.ikkala@aalto.fi> Date: Tue, 25 Jan 2022 16:22:14 +0200 Subject: [PATCH] Add new MUI icon --- src/client/components/main_layout/MuiIcon.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/client/components/main_layout/MuiIcon.js b/src/client/components/main_layout/MuiIcon.js index d60bf295..d40873c1 100644 --- a/src/client/components/main_layout/MuiIcon.js +++ b/src/client/components/main_layout/MuiIcon.js @@ -19,7 +19,8 @@ import { Add, PlayArrow, MailOutline, - TrendingDown + TrendingDown, + Tune } from '@mui/icons-material' import has from 'lodash' @@ -44,7 +45,8 @@ const MuiIcon = props => { Add: Add, PlayArrow: PlayArrow, MailOutline: MailOutline, - TrendingDown: TrendingDown + TrendingDown: TrendingDown, + Tune: Tune } if (has(MuiIcons, props.iconName)) { const MuiIconComponent = MuiIcons[props.iconName] -- GitLab