@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
15 lines (12 loc) • 367 B
text/typescript
import { StyleSheet } from 'react-native'
import type { ThemeVarType } from '../theme'
export const createStyles = (themeVar: ThemeVarType) => {
return StyleSheet.create({
menu: {
flexDirection: 'row',
alignItems: 'center',
height: themeVar.dropdown_menu_height,
backgroundColor: themeVar.dropdown_menu_background_color,
},
})
}