From 4b3456ac0c072a8a92a327ba9bf6b94c854c39be Mon Sep 17 00:00:00 2001 From: Calin Chitu Date: Thu, 25 Nov 2021 20:22:00 +0200 Subject: [PATCH] feat(branding) added native extension to updateTheme helper --- react/features/base/ui/components/BaseTheme.native.js | 2 +- .../ui/components/{updateTheme.js => updateTheme.native.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename react/features/base/ui/components/{updateTheme.js => updateTheme.native.js} (100%) diff --git a/react/features/base/ui/components/BaseTheme.native.js b/react/features/base/ui/components/BaseTheme.native.js index a7d2f1fac..bdb0ea6f8 100644 --- a/react/features/base/ui/components/BaseTheme.native.js +++ b/react/features/base/ui/components/BaseTheme.native.js @@ -3,7 +3,7 @@ import { font, colors, colorMap, spacing, shape, typography } from '../Tokens'; import { createNativeTheme } from '../functions.native'; -import updateTheme from './updateTheme'; +import updateTheme from './updateTheme.native'; export default createNativeTheme(updateTheme({ font, diff --git a/react/features/base/ui/components/updateTheme.js b/react/features/base/ui/components/updateTheme.native.js similarity index 100% rename from react/features/base/ui/components/updateTheme.js rename to react/features/base/ui/components/updateTheme.native.js