Files
jitsi-meet/react/features/base/ui/components/BaseTheme.native.ts
Robert Pintilii 40637aa3dc ref(ui-components) Improve Button component (#12015)
Bring web and native more in line
2022-08-22 12:40:59 +03:00

14 lines
314 B
TypeScript

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
}));