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';