Files
jitsi-meet/react/features/base/ui/components/BaseTheme.web.ts

12 lines
253 B
TypeScript
Raw Normal View History

import { breakpoints, colorMap, font, shape, spacing, typography } from '../Tokens';
2022-08-01 10:04:23 +03:00
import { createWebTheme } from '../functions.web';
export default createWebTheme({
font,
colorMap,
spacing,
shape,
typography,
breakpoints
});