mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 19:32:27 +00:00
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import { colorMap, colors, font, shape, spacing, typography } from '../Tokens';
|
|
import { createNativeTheme } from '../functions.native';
|
|
|
|
import updateTheme from './updateTheme.native';
|
|
|
|
export default createNativeTheme(updateTheme({
|
|
font,
|
|
colors,
|
|
colorMap,
|
|
spacing,
|
|
shape,
|
|
typography
|
|
}));
|