diff --git a/src/client/components/main_layout/MuiIcon.js b/src/client/components/main_layout/MuiIcon.js index d40873c1af95cc94afb56d5186ee4488595e497b..73ab4b3892e925ea1fbb470372e69173eadf42e1 100644 --- a/src/client/components/main_layout/MuiIcon.js +++ b/src/client/components/main_layout/MuiIcon.js @@ -20,7 +20,9 @@ import { PlayArrow, MailOutline, TrendingDown, - Tune + Tune, + ArrowForward, + Subject } from '@mui/icons-material' import has from 'lodash' @@ -46,7 +48,9 @@ const MuiIcon = props => { PlayArrow: PlayArrow, MailOutline: MailOutline, TrendingDown: TrendingDown, - Tune: Tune + Tune: Tune, + ArrowForward: ArrowForward, + Subject: Subject } if (has(MuiIcons, props.iconName)) { const MuiIconComponent = MuiIcons[props.iconName]