14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
|
// @flow
|
||
|
|
||
|
import { font, colors, colorMap, spacing, shape, typography } from '../Tokens';
|
||
|
import { createNativeTheme } from '../functions.native';
|
||
|
|
||
|
export default createNativeTheme({
|
||
|
font,
|
||
|
colors,
|
||
|
colorMap,
|
||
|
spacing,
|
||
|
shape,
|
||
|
typography
|
||
|
});
|