From 137c268a7ba19a9fdf6adc2ca8630bf4bd3efa9c Mon Sep 17 00:00:00 2001 From: zeppi Date: Tue, 23 Mar 2021 18:30:27 -0400 Subject: [PATCH] add livestream icons --- ui/component/common/icon-custom.jsx | 267 +++++++++++++++++++++++++++- ui/constants/icons.js | 4 +- 2 files changed, 264 insertions(+), 7 deletions(-) diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index e754a71d2..417b59eb7 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -1240,12 +1240,6 @@ export const icons = { ), - [ICONS.LIVESTREAM]: buildIcon( - - - - - ), [ICONS.CHANNEL_LEVEL_1]: (props: CustomProps) => ( ), + [ICONS.LIVESTREAM]: (props: CustomProps) => ( + + + + + + + + + + + + + + {/* }//fill="#FFFFFF" */} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ), + [ICONS.LIVESTREAM_SOLID]: (props: CustomProps) => ( + + + + + + + + + + + + + + + + + + + + ), + [ICONS.LIVESTREAM_MONOCHROME]: (props: CustomProps) => ( + + + + + + + + + + + + + + + + + + + ), }; diff --git a/ui/constants/icons.js b/ui/constants/icons.js index 6b43cb5c0..7eaf7ce71 100644 --- a/ui/constants/icons.js +++ b/ui/constants/icons.js @@ -97,7 +97,6 @@ export const MORE_VERTICAL = 'MoreVertical'; export const IMAGE = 'Image'; export const AUDIO = 'HeadPhones'; export const VIDEO = 'Video'; -export const LIVESTREAM = 'Livestream'; export const VOLUME_MUTED = 'VolumeX'; export const TEXT = 'FileText'; export const DOWNLOADABLE = 'Downloadable'; @@ -151,3 +150,6 @@ export const UNIVERSE = 'Universe'; export const CHEESE = 'Cheese'; export const PEACE = 'Peace'; export const PORK_BUN = 'PorkBun'; +export const LIVESTREAM = 'Livestream'; +export const LIVESTREAM_SOLID = 'LivestreamSolid'; +export const LIVESTREAM_MONOCHROME = 'LivestreamMono';