jiti-meet/react/features/base/ui/components/BaseTheme.native.js

16 lines
317 B
JavaScript
Raw Normal View History

// @flow
import { font, colors, colorMap, spacing, shape, typography } from '../Tokens';
import { createNativeTheme } from '../functions.native';
import updateTheme from './updateTheme';
export default createNativeTheme(updateTheme({
font,
colors,
colorMap,
spacing,
shape,
typography
}));