@madeja-studio/telar
Version:
UI component library by Madeja Studio
16 lines (13 loc) • 354 B
text/typescript
import type { StyleProp, ViewStyle } from 'react-native';
import type { CoreTheme } from '../../theme/core';
export const defaultTheme = {
color: {
selected: (theme: CoreTheme) => theme.color.primary,
unselected: (theme: CoreTheme) => theme.color.primary,
},
default: {
style: {
root: {} as StyleProp<ViewStyle>,
},
},
};