From 5453234fa29742615f3af1887fa5b1fff4c558ef Mon Sep 17 00:00:00 2001 From: leticiabiazioli Date: Thu, 29 Aug 2024 14:09:32 -0300 Subject: [PATCH 1/5] feat(adding new icon): adding new icon --- components/Icon/Icon.jsx | 6 ++++-- components/shared/icons.js | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/components/Icon/Icon.jsx b/components/Icon/Icon.jsx index 26650f856..5b1a57f97 100644 --- a/components/Icon/Icon.jsx +++ b/components/Icon/Icon.jsx @@ -39,6 +39,7 @@ import Contrast from '@mui/icons-material/Contrast'; import CreditCard from '@mui/icons-material/CreditCard'; import DateRange from '@mui/icons-material/DateRange'; import Delete from '@mui/icons-material/Delete'; +import DescriptionOutlinedIcon from '@mui/icons-material/DescriptionOutlined'; import Done from '@mui/icons-material/Done'; import Edit from '@mui/icons-material/Edit'; import EmojiPeople from '@mui/icons-material/EmojiPeople'; @@ -97,10 +98,10 @@ import StarHalf from '@mui/icons-material/StarHalf'; import StarRounded from '@mui/icons-material/StarRounded'; import Stars from '@mui/icons-material/Stars'; import SwapVert from '@mui/icons-material/SwapVert'; -import ThumbDownOutlined from '@mui/icons-material/ThumbDownOutlined'; import ThumbDown from '@mui/icons-material/ThumbDown'; -import ThumbUpOutlined from '@mui/icons-material/ThumbUpOutlined'; +import ThumbDownOutlined from '@mui/icons-material/ThumbDownOutlined'; import ThumbUp from '@mui/icons-material/ThumbUp'; +import ThumbUpOutlined from '@mui/icons-material/ThumbUpOutlined'; import TimerOutlined from '@mui/icons-material/TimerOutlined'; import TrendingUp from '@mui/icons-material/TrendingUp'; import Tune from '@mui/icons-material/Tune'; @@ -165,6 +166,7 @@ const Icon = ({ name, skin = '', style = {}, size = 'medium', ...props }) => { credit_card: CreditCard, date_range: DateRange, delete: Delete, + description_outline: DescriptionOutlinedIcon, done: Done, edit: Edit, emoji_people: EmojiPeople, diff --git a/components/shared/icons.js b/components/shared/icons.js index 9ee3003d6..865d36730 100644 --- a/components/shared/icons.js +++ b/components/shared/icons.js @@ -37,6 +37,7 @@ const icons = [ 'credit_card', 'date_range', 'delete', + 'description_outline', 'done', 'edit', 'emoji_people', From fc4228adc17d491d294437b6772b39858c5a6614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Let=C3=ADcia=20Franzo=20de=20Lima=20Biazioli?= <121887268+leticiabiazioli@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:40:10 -0300 Subject: [PATCH 2/5] Update components/shared/icons.js Co-authored-by: MarcosViniciusPC <105747728+MarcosViniciusPC@users.noreply.github.com> --- components/shared/icons.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/shared/icons.js b/components/shared/icons.js index 865d36730..8b96f746b 100644 --- a/components/shared/icons.js +++ b/components/shared/icons.js @@ -37,7 +37,7 @@ const icons = [ 'credit_card', 'date_range', 'delete', - 'description_outline', + 'description_outlined', 'done', 'edit', 'emoji_people', From efc426677473724620e831045efe658ae6cb6021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Let=C3=ADcia=20Franzo=20de=20Lima=20Biazioli?= <121887268+leticiabiazioli@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:40:23 -0300 Subject: [PATCH 3/5] Update components/Icon/Icon.jsx Co-authored-by: MarcosViniciusPC <105747728+MarcosViniciusPC@users.noreply.github.com> --- components/Icon/Icon.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Icon/Icon.jsx b/components/Icon/Icon.jsx index 5b1a57f97..110efecc0 100644 --- a/components/Icon/Icon.jsx +++ b/components/Icon/Icon.jsx @@ -166,7 +166,7 @@ const Icon = ({ name, skin = '', style = {}, size = 'medium', ...props }) => { credit_card: CreditCard, date_range: DateRange, delete: Delete, - description_outline: DescriptionOutlinedIcon, + description_outlined: DescriptionOutlined, done: Done, edit: Edit, emoji_people: EmojiPeople, From 0de977935bfb8d6fe55f5facccc55bda3029ee9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Let=C3=ADcia=20Franzo=20de=20Lima=20Biazioli?= <121887268+leticiabiazioli@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:40:31 -0300 Subject: [PATCH 4/5] Update components/Icon/Icon.jsx Co-authored-by: MarcosViniciusPC <105747728+MarcosViniciusPC@users.noreply.github.com> --- components/Icon/Icon.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Icon/Icon.jsx b/components/Icon/Icon.jsx index 110efecc0..8e5e31b41 100644 --- a/components/Icon/Icon.jsx +++ b/components/Icon/Icon.jsx @@ -39,7 +39,7 @@ import Contrast from '@mui/icons-material/Contrast'; import CreditCard from '@mui/icons-material/CreditCard'; import DateRange from '@mui/icons-material/DateRange'; import Delete from '@mui/icons-material/Delete'; -import DescriptionOutlinedIcon from '@mui/icons-material/DescriptionOutlined'; +import DescriptionOutlined from '@mui/icons-material/DescriptionOutlined'; import Done from '@mui/icons-material/Done'; import Edit from '@mui/icons-material/Edit'; import EmojiPeople from '@mui/icons-material/EmojiPeople'; From e0380554748a6e8b4ae347156fc4b37536245b37 Mon Sep 17 00:00:00 2001 From: Marcos Conceicao Date: Thu, 29 Aug 2024 15:59:53 -0300 Subject: [PATCH 5/5] chore(index.d.ts): Added new icon --- components/Icon/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/components/Icon/index.d.ts b/components/Icon/index.d.ts index 656cd00d3..c74fd3724 100644 --- a/components/Icon/index.d.ts +++ b/components/Icon/index.d.ts @@ -220,6 +220,7 @@ export type IconNames = | 'delete' | 'delete_sweep' | 'description' + | 'description_outlined' | 'desktop_mac' | 'desktop_windows' | 'details'