From 7e0363a5638fd16573732b28403f7ab49f251d85 Mon Sep 17 00:00:00 2001 From: Rafael Date: Thu, 14 Jul 2022 14:24:20 -0300 Subject: [PATCH] Add Comedy icon --- ui/component/common/icon-custom.jsx | 27 +++++++++++++++++++++++++++ ui/constants/icons.js | 1 + 2 files changed, 28 insertions(+) diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index 910d896f6..5befd3158 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -3473,4 +3473,31 @@ export const icons = { ); }, + [ICONS.COMEDY]: (props: IconProps) => { + const { size = 24, color = 'currentColor', ...otherProps } = props; + + return ( + + + + + + + + + + + + ); + }, }; diff --git a/ui/constants/icons.js b/ui/constants/icons.js index 29e35e2cd..7feca7f1b 100644 --- a/ui/constants/icons.js +++ b/ui/constants/icons.js @@ -213,3 +213,4 @@ export const PLAYLIST = 'Playlist'; export const PLAYLIST_ADD = 'PlaylistAdd'; export const PLAYLIST_FILLED = 'PlaylistFilled'; export const ARRANGE = 'Arrange'; +export const COMEDY = 'Comedy';