mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-11 17:32:29 +00:00
16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
// @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
|
|
}));
|