From d6482ab07dfe89f71d87b9c7a75cd0f7d0282414 Mon Sep 17 00:00:00 2001 From: andreas-unleash Date: Thu, 14 Mar 2024 11:33:19 +0200 Subject: [PATCH] fix: change insights icon to award star (#6534) Changes the insights icon to award_star. Closes # [1-2180](https://linear.app/unleash/issue/1-2180/change-icon-to-award-star) Screenshot 2024-03-13 at 13 59 21 Signed-off-by: andreas-unleash --- .../componentsStat/FlagStats/FlagStats.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/component/executiveDashboard/componentsStat/FlagStats/FlagStats.tsx b/frontend/src/component/executiveDashboard/componentsStat/FlagStats/FlagStats.tsx index 005d26907e..9c6e77da34 100644 --- a/frontend/src/component/executiveDashboard/componentsStat/FlagStats/FlagStats.tsx +++ b/frontend/src/component/executiveDashboard/componentsStat/FlagStats/FlagStats.tsx @@ -1,4 +1,4 @@ -import Settings from '@mui/icons-material/Settings'; +import Icon from '@mui/material/Icon'; import { Box, Typography, styled } from '@mui/material'; import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender'; @@ -57,11 +57,12 @@ const StyledFlagCountPerUser = styled(Typography)(({ theme }) => ({ fontSize: theme.fontSizes.mainHeader, })); -const StyledSettingsIcon = styled(Settings)(({ theme }) => ({ +const StyledIcon = styled(Icon)(({ theme }) => ({ color: theme.palette.primary.main, width: '15px', height: '15px', marginRight: theme.spacing(0.5), + fontSize: '15px!important', })); interface IFlagStatsProps { @@ -87,7 +88,7 @@ export const FlagStats: React.FC = ({ - + award_star