diff --git a/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition.scss b/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition.scss
index fc49850b5a..f270b99b99 100644
--- a/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition.scss
+++ b/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition.scss
@@ -3,7 +3,7 @@
text-align: center;
svg {
- margin: 0 auto;
+ margin: 0 auto 24px auto;
}
}
diff --git a/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition_right_panel.tsx b/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition_right_panel.tsx
index 4d6ebdd33b..068be2b1ea 100644
--- a/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition_right_panel.tsx
+++ b/webapp/channels/src/components/admin_console/license_settings/team_edition/team_edition_right_panel.tsx
@@ -4,7 +4,7 @@
import React from 'react';
import {FormattedMessage, useIntl} from 'react-intl';
-import WomanUpArrowsAndCloudsSvg from 'components/common/svg_images_components/woman_up_arrows_and_clouds_svg';
+import SetupSystemSvg from 'components/common/svg_images_components/setup_system';
import LoadingWrapper from 'components/widgets/loading/loading_wrapper';
import {format} from 'utils/markdown';
@@ -157,9 +157,9 @@ const TeamEditionRightPanel: React.FC = ({
return (
-
diff --git a/webapp/channels/src/components/admin_console/system_users/system_users_export/upgrade_export_data_modal.tsx b/webapp/channels/src/components/admin_console/system_users/system_users_export/upgrade_export_data_modal.tsx
index 079027be98..a63fa1ff4f 100644
--- a/webapp/channels/src/components/admin_console/system_users/system_users_export/upgrade_export_data_modal.tsx
+++ b/webapp/channels/src/components/admin_console/system_users/system_users_export/upgrade_export_data_modal.tsx
@@ -5,7 +5,7 @@ import React from 'react';
import {FormattedMessage} from 'react-intl';
import useOpenPricingModal from 'components/common/hooks/useOpenPricingModal';
-import WomanUpArrowsAndCloudsSvg from 'components/common/svg_images_components/woman_up_arrows_and_clouds_svg';
+import SetupSystemSvg from 'components/common/svg_images_components/setup_system';
import ConfirmModalRedux from 'components/confirm_modal_redux';
import './upgrade_export_data_modal.scss';
@@ -35,7 +35,7 @@ export function UpgradeExportDataModal({onExited}: Props) {
defaultMessage='Export detailed data reports with ease and analyse user statistics conveniently. Upgrade to the Professional plan to gain access to data export.'
/>
-
diff --git a/webapp/channels/src/components/common/svg_images_components/alert_svg.tsx b/webapp/channels/src/components/common/svg_images_components/alert_svg.tsx
index 6fee1280c2..5161a60d65 100644
--- a/webapp/channels/src/components/common/svg_images_components/alert_svg.tsx
+++ b/webapp/channels/src/components/common/svg_images_components/alert_svg.tsx
@@ -10,25 +10,73 @@ type SvgProps = {
const AlertSvg = (props: SvgProps) => (
+
);
export default AlertSvg;
diff --git a/webapp/channels/src/components/common/svg_images_components/hands_svg.tsx b/webapp/channels/src/components/common/svg_images_components/hands_svg.tsx
deleted file mode 100644
index f69b11be95..0000000000
--- a/webapp/channels/src/components/common/svg_images_components/hands_svg.tsx
+++ /dev/null
@@ -1,97 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See LICENSE.txt for license information.
-
-import React from 'react';
-
-type SvgProps = {
- width: number;
- height: number;
-}
-
-const HandsSvg = (props: SvgProps) => (
-
-);
-
-export default HandsSvg;
diff --git a/webapp/channels/src/components/common/svg_images_components/setup_system.tsx b/webapp/channels/src/components/common/svg_images_components/setup_system.tsx
new file mode 100644
index 0000000000..0dbf8e605a
--- /dev/null
+++ b/webapp/channels/src/components/common/svg_images_components/setup_system.tsx
@@ -0,0 +1,247 @@
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
+// See LICENSE.txt for license information.
+
+import React from 'react';
+
+type SvgProps = {
+ width: number;
+ height: number;
+};
+
+const SetupSystemSvg = (props: SvgProps) => (
+
+);
+
+export default SetupSystemSvg;
diff --git a/webapp/channels/src/components/common/svg_images_components/success_svg.tsx b/webapp/channels/src/components/common/svg_images_components/success_svg.tsx
new file mode 100644
index 0000000000..f091c2729d
--- /dev/null
+++ b/webapp/channels/src/components/common/svg_images_components/success_svg.tsx
@@ -0,0 +1,67 @@
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
+// See LICENSE.txt for license information.
+
+import React from 'react';
+
+type SvgProps = {
+ width: number;
+ height: number;
+}
+
+const SuccessSvg = (props: SvgProps) => (
+
+);
+
+export default SuccessSvg;
diff --git a/webapp/channels/src/components/common/svg_images_components/two_people_chatting_svg.tsx b/webapp/channels/src/components/common/svg_images_components/two_people_chatting_svg.tsx
deleted file mode 100644
index cb7ccfb794..0000000000
--- a/webapp/channels/src/components/common/svg_images_components/two_people_chatting_svg.tsx
+++ /dev/null
@@ -1,417 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See LICENSE.txt for license information.
-
-import React from 'react';
-
-type SvgProps = {
- width: number;
- height: number;
-};
-
-const TwoPeopleChattingSvg = (props: SvgProps) => (
-
-);
-
-export default TwoPeopleChattingSvg;
diff --git a/webapp/channels/src/components/common/svg_images_components/upload_license.tsx b/webapp/channels/src/components/common/svg_images_components/upload_license.tsx
new file mode 100644
index 0000000000..301ff065b8
--- /dev/null
+++ b/webapp/channels/src/components/common/svg_images_components/upload_license.tsx
@@ -0,0 +1,104 @@
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
+// See LICENSE.txt for license information.
+
+// https://www.figma.com/file/MYVj0NUudT9V7GV9KepBy3/%E2%9C%85Foundations---Illustrations?node-id=665%3A9992
+
+import React from 'react';
+
+type SvgProps = {
+ width: number;
+ height: number;
+};
+
+const UploadLicenseSvg = (props: SvgProps) => (
+
+);
+
+export default UploadLicenseSvg;
diff --git a/webapp/channels/src/components/common/svg_images_components/woman_arm_on_table_svg.tsx b/webapp/channels/src/components/common/svg_images_components/woman_arm_on_table_svg.tsx
deleted file mode 100644
index 920cb700b3..0000000000
--- a/webapp/channels/src/components/common/svg_images_components/woman_arm_on_table_svg.tsx
+++ /dev/null
@@ -1,332 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See LICENSE.txt for license information.
-
-// https://www.figma.com/file/MYVj0NUudT9V7GV9KepBy3/%E2%9C%85Foundations---Illustrations?node-id=665%3A9992
-
-import React from 'react';
-
-type SvgProps = {
- width: number;
- height: number;
-};
-
-const WomanArmOnTable = (props: SvgProps) => (
-
-);
-
-export default WomanArmOnTable;
diff --git a/webapp/channels/src/components/common/svg_images_components/woman_up_arrows_and_clouds_svg.tsx b/webapp/channels/src/components/common/svg_images_components/woman_up_arrows_and_clouds_svg.tsx
deleted file mode 100644
index 8218738562..0000000000
--- a/webapp/channels/src/components/common/svg_images_components/woman_up_arrows_and_clouds_svg.tsx
+++ /dev/null
@@ -1,273 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See LICENSE.txt for license information.
-
-import React from 'react';
-
-type SvgProps = {
- width: number;
- height: number;
-};
-
-const WomanUpArrowsAndCloudsSvg = (props: SvgProps) => (
-
-);
-
-export default WomanUpArrowsAndCloudsSvg;
diff --git a/webapp/channels/src/components/post_edit_history/__snapshots__/post_edit_history.test.tsx.snap b/webapp/channels/src/components/post_edit_history/__snapshots__/post_edit_history.test.tsx.snap
index ee3cebfb7c..fafb3778ad 100644
--- a/webapp/channels/src/components/post_edit_history/__snapshots__/post_edit_history.test.tsx.snap
+++ b/webapp/channels/src/components/post_edit_history/__snapshots__/post_edit_history.test.tsx.snap
@@ -64,21 +64,68 @@ exports[`components/post_edit_history should display error screen if errors are
),
bottomLeftMessage: formatMessage({id: 'trial_benefits.modal.onlyVisibleToAdmins', defaultMessage: 'Only visible to admins'}),
diff --git a/webapp/channels/src/sass/base/_css_variables.scss b/webapp/channels/src/sass/base/_css_variables.scss
index 7a5ee68d9d..c82c88cdee 100644
--- a/webapp/channels/src/sass/base/_css_variables.scss
+++ b/webapp/channels/src/sass/base/_css_variables.scss
@@ -110,4 +110,11 @@
--center-channel-text: var(--center-channel-color);
// use --center-channel-color-rgb instead
--center-channel-text-rgb: var(--center-channel-color-rgb);
+
+ //Colors used in svgs but not themed
+ --indigo-400: #28427B;
+ --indigo-300: #32539A;
+ --sand: #CCC4AE;
+ --neutral-0: #FFFFFF;
+ --neutral-1200: #090A0B;
}