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

16 lines
324 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.native';
export default createNativeTheme(updateTheme({
font,
colors,
colorMap,
spacing,
shape,
typography
}));