From 26f80b0ec5b1df14cf09fcf1e109981a8aa07f3c Mon Sep 17 00:00:00 2001 From: saltrafael <76502841+saltrafael@users.noreply.github.com> Date: Thu, 30 Sep 2021 10:01:24 -0300 Subject: [PATCH] Add icons (#7194) --- ui/component/common/icon-custom.jsx | 54 +++++++++++++++++++++++++++++ ui/constants/icons.js | 5 +++ 2 files changed, 59 insertions(+) diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index c3e838b96..162a80cf8 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -2469,4 +2469,58 @@ export const icons = { ), + [ICONS.PRIMARY_CONTENT]: buildIcon( + + + + + + + + + + ), + [ICONS.LIFE]: buildIcon( + + + + + + + + ), + [ICONS.ARTISTS]: buildIcon( + + + + + ), + [ICONS.MYSTERIES]: buildIcon( + + + + + + ), + [ICONS.TECHNOLOGY]: buildIcon( + + + + + + + + + + + + + + + + + + + + ), }; diff --git a/ui/constants/icons.js b/ui/constants/icons.js index c4281ba04..519ba168f 100644 --- a/ui/constants/icons.js +++ b/ui/constants/icons.js @@ -174,3 +174,8 @@ export const BADGE_STREAMER = 'BadgeStreamer'; export const REPLAY = 'Replay'; export const REPEAT = 'Repeat'; export const SHUFFLE = 'Shuffle'; +export const PRIMARY_CONTENT = 'Primary Content'; +export const LIFE = 'Life'; +export const ARTISTS = 'Artists'; +export const MYSTERIES = 'Mysteries'; +export const TECHNOLOGY = 'Technology';