From 18a01bf14a63ddb97859c762760a1ee318b7b56e Mon Sep 17 00:00:00 2001 From: Amir Movahedi Date: Sun, 16 May 2021 15:28:47 +0700 Subject: [PATCH] fix: change header icons to rounded Signed-off-by: Amir Movahedi --- src/components/homeHeader/HomeHeaderComponent.tsx | 10 +++++----- src/components/post/index.tsx | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/homeHeader/HomeHeaderComponent.tsx b/src/components/homeHeader/HomeHeaderComponent.tsx index 7582b79..89a4d8b 100644 --- a/src/components/homeHeader/HomeHeaderComponent.tsx +++ b/src/components/homeHeader/HomeHeaderComponent.tsx @@ -4,11 +4,11 @@ import IconButton from '@material-ui/core/IconButton'; import Menu from '@material-ui/core/Menu'; import Toolbar from '@material-ui/core/Toolbar'; import Tooltip from '@material-ui/core/Tooltip'; -import BackIcon from '@material-ui/icons/ArrowBack'; -import SvgDehaze from '@material-ui/icons/Dehaze'; -import NotificationsIcon from '@material-ui/icons/Notifications'; -import SearchIcon from '@material-ui/icons/Search'; -import ChatIcon from '@material-ui/icons/Chat'; +import BackIcon from '@material-ui/icons/ArrowBackRounded'; +import SvgDehaze from '@material-ui/icons/DehazeRounded'; +import NotificationsIcon from '@material-ui/icons/NotificationsRounded'; +import SearchIcon from '@material-ui/icons/SearchRounded'; +import ChatIcon from '@material-ui/icons/ChatRounded'; import HomeIcon from '@material-ui/icons/HomeRounded'; import ProfileIcon from '@material-ui/icons/AssignmentIndRounded'; import SettingIcon from '@material-ui/icons/SettingsRounded'; diff --git a/src/components/post/index.tsx b/src/components/post/index.tsx index ef13d2d..0c6fc18 100644 --- a/src/components/post/index.tsx +++ b/src/components/post/index.tsx @@ -10,7 +10,7 @@ import Menu from '@material-ui/core/Menu'; import MenuItem from '@material-ui/core/MenuItem'; import CommentIcon from '@material-ui/icons/CommentRounded'; import LikeIcon from '@material-ui/icons/FavoriteRounded'; -import SvgFavoriteBorder from '@material-ui/icons/FavoriteBorder'; +import SvgFavoriteBorder from '@material-ui/icons/FavoriteBorderRounded'; import MoreVertIcon from '@material-ui/icons/MoreVert'; import SvgPlay from '@material-ui/icons/PlayCircleFilled'; import ShareIcon from '@material-ui/icons/ShareRounded';